예제 #1
0
 public GetResidentByIdUseCase(IHousingGateway housingGateway)
 {
     _housingGateway = housingGateway;
 }
예제 #2
0
 public GetAllResidentsUseCase(IHousingGateway housingGateway, IValidatePostcode validatePostcode)
 {
     _housingGateway   = housingGateway;
     _validatePostcode = validatePostcode;
 }