using System.Threading.Tasks; namespace EVCB_OCPP.WSServer.Service { public interface IBusinessServiceFactory { Task CreateBusinessService(string customerId); } }