StartTransacionReportJob.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. using EVCB_OCPP.TaskScheduler.Helper;
  2. using EVCB_OCPP.TaskScheduler.Services;
  3. using Microsoft.Extensions.DependencyInjection;
  4. using Microsoft.Extensions.Logging;
  5. using Quartz;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. namespace EVCB_OCPP.TaskScheduler.Jobs
  12. {
  13. [DisallowConcurrentExecution]
  14. public class StartTransacionReportJob : IJob
  15. {
  16. private readonly ICustomersService customersService;
  17. private readonly DatabaseService databaseService;
  18. private readonly ILogger logger;
  19. public StartTransacionReportJob(
  20. ICustomersService customersService,
  21. DatabaseService databaseService,
  22. ILogger<StartTransacionReportJob> logger )
  23. {
  24. this.customersService = customersService;
  25. this.databaseService = databaseService;
  26. this.logger = logger;
  27. }
  28. public async Task Execute(IJobExecutionContext context)
  29. {
  30. using var timer = TimerHelper.Start(this.ToString(), logger);
  31. List<Task> tList = new List<Task>();
  32. var cList = await customersService.GetCallPartnerCustomers();
  33. var items = await databaseService.GetNeedReportStartTransactionSession();
  34. foreach (var customerId in cList)
  35. {
  36. if (customerId == new Guid("009E603C-79CD-4620-A2B8-D9349C0E8AD8")) continue;
  37. ICustomerService s = await customersService.GetCustomerService(customerId);
  38. //tList.Add(s.ReportStartTransaction());
  39. //tList.Add(DoMainTask(s));
  40. tList.Add(s.ReportStartTransaction(items.Where(x=>x.CustomerId == customerId).ToList()));
  41. }
  42. await Task.WhenAll(tList.ToArray());
  43. logger.LogInformation("{0} complete", this.ToString());
  44. }
  45. //private Task DoMainTask(ICustomerService _service)
  46. //{
  47. // return _service.ReportStartTransaction();
  48. //}
  49. }
  50. }