Exemplo n.º 1
0
 public GetAllUseCase(IResidentGateway gateway)
 {
     _residentGateway = gateway;
 }
 public CreateContactDetailsUseCase(IResidentGateway residentGateway)
 {
     _residentGateway = residentGateway;
 }
Exemplo n.º 3
0
 public InsertExternalReferenceRecordUseCase(IResidentGateway gateway)
 {
     _residentGateway = gateway;
 }
 public GetByIdUseCase(IResidentGateway gateway)
 {
     _gateway = gateway;
 }
Exemplo n.º 5
0
 public InsertResidentRecordUseCase(IResidentGateway gateway)
 {
     _residentGateway = gateway;
 }