コード例 #1
0
 public AppointmentsController(IAppointmentRepo repository, IMapper mapper, IDoctorRepo doctorRepo, IPacientRepo pacientRepo)
 {
     _pacientRepository = pacientRepo;
     _doctorRepository  = doctorRepo;
     _repository        = repository;
     _mapper            = mapper;
 }
コード例 #2
0
ファイル: DoctorController.cs プロジェクト: BartMiki/iDrugs
 public DoctorController(IDoctorRepo doctorRepo, ILogger <DoctorController> logger)
 {
     _doctorRepo = doctorRepo;
     _logger     = logger;
 }
コード例 #3
0
 public DoctorsController(IDoctorRepo repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
コード例 #4
0
 public DoctorController(IDoctorRepo doctorRepo)
 {
     _doctorRepo = doctorRepo;
 }
コード例 #5
0
 public SelectService(IMedicineRepo medicineRepo, IApothecaryRepo apothecaryRepo, IDoctorRepo doctorRepo)
 {
     _medicineRepo   = medicineRepo;
     _apothecaryRepo = apothecaryRepo;
     _doctorRepo     = doctorRepo;
 }
コード例 #6
0
 public DoctorsController(IDoctorRepo repo)
 {
     _repo = repo;
 }