public RenterController( IRenterService renterService, IResponseModel responseModel) { _renterService = renterService; _responseModel = responseModel; }
public PersonService(IRepository <PersonEntity> personRepository, IRepository <AreaEntity> areaRepository, IRepository <RenterEntity> renterRepository, IRenterService renterService, ISyncLogServie syncService, IRepository <RoomEntity> roomRepository, IRepository <RoomUserEntity> roomUserRepository, IDbContext dbContext, IRepository <DictEntity> dictRepository) { _personRepository = personRepository; _renterRepository = renterRepository; _areaRepository = areaRepository; _renterService = renterService; _dictRepository = dictRepository; _roomRepository = roomRepository; _syncService = syncService; _roomUserRepository = roomUserRepository; _dbContext = dbContext; }
public RenterController(IRenterService theRenterService) { _renterService = theRenterService; }
public RentersController(IRenterService renterService) { _renterService = renterService; }