1234567891011121314151617181920212223242526272829 |
- 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 LocalBusinessService : IBusinessService
- {
-
-
- string customerId = string.Empty;
- public LocalBusinessService(string customerId)
- {
- this.customerId = customerId;
- }
- public IdTagInfo Authorize(string idTag)
- {
- return new IdTagInfo() { status = AuthorizationStatus.Accepted };
- }
- }
- }
|