예제 #1
0
 public GetAllUseCase(IResidentGateway gateway)
 {
     _residentGateway = gateway;
 }
 public CreateContactDetailsUseCase(IResidentGateway residentGateway)
 {
     _residentGateway = residentGateway;
 }
예제 #3
0
 public InsertExternalReferenceRecordUseCase(IResidentGateway gateway)
 {
     _residentGateway = gateway;
 }
 public GetByIdUseCase(IResidentGateway gateway)
 {
     _gateway = gateway;
 }
예제 #5
0
 public InsertResidentRecordUseCase(IResidentGateway gateway)
 {
     _residentGateway = gateway;
 }