コード例 #1
0
 public bool Update(Medicamento t)
 {
     DALMedicamento med = new DALMedicamento();
     return med.Update(t);
 }
コード例 #2
0
 public List<Medicamento> SelectALL()
 {
     DALMedicamento med = new DALMedicamento();
     return med.SelectAll();
 }
コード例 #3
0
 public bool Insert(Medicamento t)
 {
     DALMedicamento med = new DALMedicamento();
     return med.Insert(t);
 }
コード例 #4
0
 public List<Medicamento> SelectAdvanced(string filtro, string texto)
 {
     DALMedicamento med = new DALMedicamento();
     return med.SelectAdvanced(filtro,texto);
 }
コード例 #5
0
 public bool Delete(Medicamento t)
 {
     DALMedicamento med = new DALMedicamento();
     return med.Delete(t);
 }