Exemple #1
0
        public bool CapNhatTongTien(string id, float tongtien)
        {
            Tiec_DAO t = new Tiec_DAO();

            return(t.CapNhatTongTien(id, tongtien));
        }
Exemple #2
0
        public bool CapNhatTiec(Tiec_DTO tiec)
        {
            Tiec_DAO t = new Tiec_DAO();

            return(t.CapNhatTiec(tiec));
        }
Exemple #3
0
        public bool ThemTiec(Tiec_DTO tiec)
        {
            Tiec_DAO t = new Tiec_DAO();

            return(t.ThemTiec(tiec));
        }
Exemple #4
0
        public bool XoaTiec(Tiec_DTO tiec)
        {
            Tiec_DAO t = new Tiec_DAO();

            return(t.XoaTiec(tiec));
        }
Exemple #5
0
 public DataTable LoadTiec()
 {
     DAO.Tiec_DAO t = new Tiec_DAO();
     return(t.LoadTiec());
 }