public bool Update(Medicamento t)
 {
     DALMedicamento med = new DALMedicamento();
     return med.Update(t);
 }
 public List<Medicamento> SelectALL()
 {
     DALMedicamento med = new DALMedicamento();
     return med.SelectAll();
 }
 public bool Insert(Medicamento t)
 {
     DALMedicamento med = new DALMedicamento();
     return med.Insert(t);
 }
 public List<Medicamento> SelectAdvanced(string filtro, string texto)
 {
     DALMedicamento med = new DALMedicamento();
     return med.SelectAdvanced(filtro,texto);
 }
 public bool Delete(Medicamento t)
 {
     DALMedicamento med = new DALMedicamento();
     return med.Delete(t);
 }