Ejemplo n.º 1
0
 public MedicamentsController(MedicamentService medicamentService)
 {
     this.medicamentService = medicamentService;
 }
Ejemplo n.º 2
0
 public async Task <IEnumerable <Medicament> > GetMedicaments()
 {
     _serviceMedicament = new MedicamentService();
     return(await _serviceMedicament.get());
 }