ICustomerService.cs 428 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace EVCB_OCPP.TaskScheduler.Services
  7. {
  8. public interface ICustomerService
  9. {
  10. List<Guid> GetCallPartnerCustomers();
  11. Task ReportStartTransaction();
  12. Task ReportStopTransaction();
  13. Task MonitorRemoteCommand();
  14. Task ReportExecutionofRemoteCommand();
  15. }
  16. }