예제 #1
0
 public PatientService(IPatientRepository repository, IPatientPhoneNumberService phoneNumberService, IHitchayvutService hitchayvutService)
 {
     _repository         = repository;
     _phoneNumberService = phoneNumberService;
     _hitchayvutService  = hitchayvutService;
 }
예제 #2
0
 public HitchayvutController(IHitchayvutService service)
 {
     _service = service;
 }
 public AppointmentHitchayvutService(IAppointmentHitchayvutRepository repository, IHitchayvutService hitchayvutService)
 {
     _repository        = repository;
     _hitchayvutService = hitchayvutService;
 }
예제 #4
0
 public AppointmentTestService(IAppointmentTestRepository repository, IHitchayvutService hitchayvutService, ITestResultValueTextService testResultValueTextService)
 {
     _repository                 = repository;
     _hitchayvutService          = hitchayvutService;
     _testResultValueTextService = testResultValueTextService;
 }