Beispiel #1
0
 public InhabitantService(IInhabitantRepository inhabitantRepository, IHouseInfoRelationShipRepository houseInfoRelationShipRepository,
                          IHouseInfoRepository houseInfoRepository, IPartyInfoRepository partyInfoRepository, IMapper mapper)
 {
     _inhabitantRepository            = inhabitantRepository;
     _houseInfoRelationShipRepository = houseInfoRelationShipRepository;
     _partyInfoRepository             = partyInfoRepository;
     _houseInfoRepository             = houseInfoRepository;
     _IMapper = mapper;
 }
 public HouseInfoRelationShipService(IHouseInfoRelationShipRepository houseInfoRelationShipRepository, IMapper mapper)
 {
     _houseInfoRelationShipRepository = houseInfoRelationShipRepository;
     _IMapper = mapper;
 }