using System.Threading.Tasks; namespace EVCB_OCPP.WSServer.Service.BusinessService { public interface IBusinessServiceFactory { Task<IBusinessService> CreateBusinessService(Guid customerId); } }