|
1 | | -using Microsoft.AspNetCore.Builder; |
2 | | -using Microsoft.AspNetCore.Hosting; |
3 | | -using Microsoft.Extensions.Configuration; |
4 | 1 | using Microsoft.Extensions.DependencyInjection; |
5 | 2 | using Microsoft.Extensions.Hosting; |
6 | | -using Microsoft.Extensions.Logging; |
7 | | -using NLog.Extensions.Logging; |
8 | | -using Shared.Logger.TennantContext; |
9 | 3 | using System; |
10 | 4 | using System.Threading; |
11 | 5 | using System.Threading.Tasks; |
12 | 6 | using Microsoft.EntityFrameworkCore; |
13 | 7 | using Shared.Logger; |
14 | | -using TestHosts.Common; |
15 | 8 | using TestHosts.Database.PataPawa; |
16 | 9 | using TestHosts.Database.TestBank; |
17 | 10 |
|
18 | 11 | namespace TestHosts |
19 | 12 | { |
20 | | - using CoreWCF; |
21 | | - using CoreWCF.Configuration; |
22 | | - using CoreWCF.Description; |
23 | | - using CoreWCF.IdentityModel.Protocols.WSTrust; |
24 | 13 | using Database.PataPawa; |
25 | | - using Database.TestBank; |
26 | | - using HealthChecks.UI.Client; |
27 | | - using Microsoft.AspNetCore.Diagnostics.HealthChecks; |
28 | 14 | using Microsoft.EntityFrameworkCore; |
29 | | - using Microsoft.Extensions.Diagnostics.HealthChecks; |
30 | | - using Microsoft.Extensions.Logging; |
31 | | - using Microsoft.OpenApi.Models; |
32 | | - using Newtonsoft.Json; |
33 | | - using Newtonsoft.Json.Serialization; |
34 | | - using NLog; |
35 | 15 | using Shared.EntityFramework; |
36 | | - using Shared.Extensions; |
37 | | - using Shared.General; |
38 | | - using Shared.Logger; |
39 | | - using Shared.Middleware; |
40 | 16 | using System; |
41 | 17 | using System.Collections.Generic; |
42 | 18 | using System.Diagnostics.CodeAnalysis; |
43 | | - using System.Diagnostics.Metrics; |
44 | | - using System.DirectoryServices.Protocols; |
45 | | - using System.IO; |
46 | 19 | using System.Linq; |
47 | | - using System.Runtime.InteropServices; |
48 | | - using System.ServiceModel; |
49 | 20 | using System.Threading; |
50 | 21 | using System.Threading.Tasks; |
51 | | - using TestHosts.SoapServices; |
52 | | - using ILogger = Microsoft.Extensions.Logging.ILogger; |
53 | 22 |
|
54 | 23 | [ExcludeFromCodeCoverage] |
55 | 24 | public class PendingPrePaymentProcessor : BackgroundService{ |
|
0 commit comments