public AdminController( ICRUDLotService crudLotService, ICRUDUserService crudUserService) { _crudLotService = crudLotService; _crudUserService = crudUserService; }
public LotManagerController( ICRUDLotService crudLotService, ICRUDUserService crudUserService, ILotService lotService) { _crudLotService = crudLotService; _crudUserService = crudUserService; _lotService = lotService; _lotManagerService = new LotManagerService(_crudLotService, _crudUserService); }
public LotManagerService(ICRUDLotService crudLotService, ICRUDUserService crudUserService) { _crudLotService = crudLotService; _crudUserService = crudUserService; }