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