Пример #1
0
 public List <ListaConsultaMedicamentoModel> ConsultarMedicamento(int sort, string psqNomeGenerico, string psqNomeFabrica, string psqFabricante)
 {
     try
     {
         MedicamentoDAL objMedicamentoDAL = new MedicamentoDAL();
         return(objMedicamentoDAL.ConsultarMedicamento(sort, psqNomeGenerico, psqNomeFabrica, psqFabricante));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }