Example #1
0
 public AnalysisesController(IRepository <string, Building> buildingRepository,
                             IDeviceRepository deviceRepository, IBillRespository billRepository)
 {
     this.buildingRepository = buildingRepository;
     this.deviceRepository   = deviceRepository;
     this.billRepository     = billRepository;
 }
 public AnalysisesController(IRepository<string, Building> buildingRepository,
     IDeviceRepository deviceRepository, IBillRespository billRepository)
 {
     this.buildingRepository = buildingRepository;
     this.deviceRepository = deviceRepository;
     this.billRepository = billRepository;
 }
Example #3
0
 public BillsController(
     IBillRespository billRepository,
     IRoomRespository roomRespository,
     IDeviceRepository deviceRespository,
     ILogRepository logRespository)
 {
     this.billRepository    = billRepository;
     this.roomRespository   = roomRespository;
     this.deviceRespository = deviceRespository;
     this.logRespository    = logRespository;
 }