12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using EVCB_OCPP.Packet.Messages.SubTypes;
- namespace EVCB_OCPP.WSServer.BusinessService
- {
- public class OuterBusinessService : IBusinessService
- {
- public OuterBusinessService(string customerId)
- {
- }
- public IdTagInfo Authorize(string idTag)
- {
- return new IdTagInfo() { status = AuthorizationStatus.Accepted };
- }
- }
- }
|