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 }; } } }