コード例 #1
0
 public AppointmentsController(IAppointmentRepo repository, IMapper mapper, IDoctorRepo doctorRepo, IPacientRepo pacientRepo)
 {
     _pacientRepository = pacientRepo;
     _doctorRepository  = doctorRepo;
     _repository        = repository;
     _mapper            = mapper;
 }
コード例 #2
0
 public PacientsController(IPacientRepo repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }