using EVCB_OCPP.Packet.Messages.SubTypes; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EVCB_OCPP.WSServer.BusinessService { public interface IBusinessService { IdTagInfo Authorize(string idTag); } static public class BusinessServiceFactory { static public IBusinessService CreateBusinessService(string customerId, bool isLocalHandle) { return new FakeLocalBusinessService(customerId); } } }