CustomerBackendFactory.cs 385 B

1234567891011121314151617181920
  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 class CustomerBackendFactory
  9. {
  10. public static ICustomerService Create(Guid customerId)
  11. {
  12. return new CommonCustomerService(customerId);
  13. }
  14. }
  15. }