public InjuriesDiseasesController(IInjuriesDiseasesRepository injuriesDiseasesRepository, IImageHandler imageHandler)
 {
     _injuriesDiseasesRepository = injuriesDiseasesRepository;
     _uploadFileAndSavePath      = new UploadFileAndSavePath(imageHandler);
 }
Exemplo n.º 2
0
 public MedicalExaminationController(ApplicationContext applicationContext, IMedicalExaminationRepository medicalExaminationRepository, IImageHandler imageHandler)
 {
     _medicalExaminationRepository = medicalExaminationRepository;
     _uploadFileAndSavePath        = new UploadFileAndSavePath(imageHandler);
 }
Exemplo n.º 3
0
 public PatientsController(IPatientRepository patientRepository, IImageHandler imageHandler)
 {
     _patientRepository     = patientRepository;
     _uploadFileAndSavePath = new UploadFileAndSavePath(imageHandler);
 }