using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using EVCB_OCPP.Packet.Messages.SubTypes; using EVCB_OCPP.WSServer.Dto; namespace EVCB_OCPP.WSServer.Service { public class LocalBusinessService : IBusinessService { string customerId = string.Empty; public LocalBusinessService(string customerId) { this.customerId = customerId; } public IdTagInfo Authorize(string chargeBoxId, string idTag) { return new IdTagInfo() { status = AuthorizationStatus.Accepted }; } public void NotifyFaultStatus(ErrorDetails details) { } } }