OuterBusinessService.cs 503 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using EVCB_OCPP.Packet.Messages.SubTypes;
  7. namespace EVCB_OCPP.WSServer.BusinessService
  8. {
  9. public class OuterBusinessService : IBusinessService
  10. {
  11. public OuterBusinessService(string customerId)
  12. {
  13. }
  14. public IdTagInfo Authorize(string idTag)
  15. {
  16. return new IdTagInfo() { status = AuthorizationStatus.Accepted };
  17. }
  18. }
  19. }