public AppointmentsController(IAppointmentRepo repository, IMapper mapper, IDoctorRepo doctorRepo, IPacientRepo pacientRepo)
 {
     _pacientRepository = pacientRepo;
     _doctorRepository  = doctorRepo;
     _repository        = repository;
     _mapper            = mapper;
 }
Esempio n. 2
0
 public DoctorController(IDoctorRepo doctorRepo, ILogger <DoctorController> logger)
 {
     _doctorRepo = doctorRepo;
     _logger     = logger;
 }
Esempio n. 3
0
 public DoctorsController(IDoctorRepo repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
Esempio n. 4
0
 public DoctorController(IDoctorRepo doctorRepo)
 {
     _doctorRepo = doctorRepo;
 }
Esempio n. 5
0
 public SelectService(IMedicineRepo medicineRepo, IApothecaryRepo apothecaryRepo, IDoctorRepo doctorRepo)
 {
     _medicineRepo   = medicineRepo;
     _apothecaryRepo = apothecaryRepo;
     _doctorRepo     = doctorRepo;
 }
Esempio n. 6
0
 public DoctorsController(IDoctorRepo repo)
 {
     _repo = repo;
 }