Beispiel #1
0
 public PatientController(IPatientApiService patientApiService, IUtilityService utilityService)
 {
     _patientApiService = patientApiService;
     _utilityService    = utilityService;
 }
Beispiel #2
0
 public PatientController(IPatientApiService patientApiService)
 {
     _patientApiService = patientApiService;
 }
 public PatientValidationServiceTests()
 {
     _patientApiService = Substitute.For <IPatientApiService>();
 }
 public PatientValidationService(IPatientApiService apiService)
 {
     _apiService = apiService;
 }