コード例 #1
0
 public PatientMedicineService(IPatientMedicineRepository patientMedicineRepository)
 {
     _patientMedicineRepository = patientMedicineRepository;
 }
コード例 #2
0
 public PatientMedicineService(IPatientMedicineRepository repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }