public BuildingController(IBuildingService buildingService, ILogger logger, IBuildingFactory buildingFactory, IHouseInfoService houseInfoService)
 {
     _buildingService  = buildingService;
     _ILogger          = logger;
     _buildingFactory  = buildingFactory;
     _houseInfoService = houseInfoService;
 }
 public InhabitantsController(IInhabitantService inhabitantService,
                              ILogger logger,
                              IInhabitantFactory inhabitantFactory,
                              IHouseInfoRelationShipService houseInfoRelationShipService,
                              IResidentIdentityRelationShipService residentIdentityRelationShipService,
                              IHouseInfoService houseInfoService,
                              IPartyService partyService
                              )
 {
     _inhabitantService                   = inhabitantService;
     _ILogger                             = logger;
     _inhabitantFactory                   = inhabitantFactory;
     _houseInfoRelationShipService        = houseInfoRelationShipService;
     _residentIdentityRelationShipService = residentIdentityRelationShipService;
     _houseInfoService                    = houseInfoService;
     _partyService                        = partyService;
 }
Пример #3
0
 public HouseInfoController(IHouseInfoService houseInfoService, ILogger logger, IInhabitantFactory inhabitantFactory)
 {
     _houseInfoService  = houseInfoService;
     _ILogger           = logger;
     _inhabitantFactory = inhabitantFactory;
 }
 public HouseInfoController(IHouseInfoService houseInfoService)
 {
     _houseInfoService = houseInfoService;
 }