Esempio n. 1
0
 public bool ThuocUpdate(ThuocEntites obj)
 {
     var dal = new ThuocDAL();
     if (dal.ThuocUpDate(obj))
         return true;
     return false;
 }
Esempio n. 2
0
 public DataTable ThuocSelectTop5(string temp)
 {
     var t = new ThuocDAL();
     var dt = new DataTable();
     dt = t.ThuocSelectTop5(temp);
     return dt;
 }
Esempio n. 3
0
 public DataTable ThuocSearch(string t)
 {
     var dal = new ThuocDAL();
     var dt = new DataTable();
     dt = dal.ThuocSearch(t);
     return dt;
 }
Esempio n. 4
0
 public DataTable ThuocSelectAll()
 {
     var dal = new ThuocDAL();
     var dt = new DataTable();
     dt = dal.ThuocSelectAll();
     return dt;
 }
Esempio n. 5
0
 public bool ThuocInsert(ThuocEntites obj)
 {
     var dal = new ThuocDAL();
     if (dal.ThuocInsert(obj))
         return true;
     return false;
 }