Ejemplo n.º 1
0
 public void TinhTrang_Phong_Edit(int HoaDonID, int PhongID)
 {
     PhongDAL doit = new PhongDAL();
     doit.TinhTrang_Phong_Edit(HoaDonID, PhongID);
 }
Ejemplo n.º 2
0
 public DataTable Phong_SoDoCay()
 {
     PhongDAL doit = new PhongDAL();
     return doit.Phong_SoDoCay();
 }
Ejemplo n.º 3
0
 public void TinhTrang_Phong_Add(int HoaDonID,int PhongID, int TinhTrangPhongID,int NgayBatDau_So)
 {
     PhongDAL doit = new PhongDAL();
     doit.TinhTrang_Phong_Add(HoaDonID,PhongID, TinhTrangPhongID, NgayBatDau_So);
 }
Ejemplo n.º 4
0
 public List<PhongInfo> Phong_GetItemsOnService()
 {
     PhongDAL doit = new PhongDAL();
     return doit.Phong_GetItemsOnService();
 }
Ejemplo n.º 5
0
 public List<TinhTrang_PhongInfo> Phong_GetItems_ByTinhTrang()
 {
     PhongDAL doit = new PhongDAL();
     return doit.Phong_GetItems_ByTinhTrang();
 }
Ejemplo n.º 6
0
 public List<PhongInfo> Phong_GetItems([Optional, DefaultParameterValue(0)] int PhongID)
 {
     PhongDAL doit = new PhongDAL();
     return doit.Phong_GetItems(PhongID);
 }
Ejemplo n.º 7
0
 public PhongInfo Phong_GetItem(int PhongID)
 {
     PhongDAL doit = new PhongDAL();
     return doit.Phong_GetItem(PhongID);
 }
Ejemplo n.º 8
0
 public void Phong_Edit(int PhongID, int LoaiPhongId, string PhongName, int TienNghiID, int SoGiuong, int SoNguoi)
 {
     PhongDAL doit = new PhongDAL();
     doit.Phong_Edit(PhongID, LoaiPhongId, PhongName, TienNghiID, SoGiuong, SoNguoi);
 }
Ejemplo n.º 9
0
 public void Phong_Delete(int PhongID)
 {
     PhongDAL doit = new PhongDAL();
     doit.Phong_Delete(PhongID);
 }
Ejemplo n.º 10
0
 public static void Phong_Add(int LoaiPhongId, string PhongName,int TienNghiID, int SoGiuong, int SoNguoi)
 {
     PhongDAL doit = new PhongDAL();
     doit.Phong_Add(LoaiPhongId, PhongName, TienNghiID, SoGiuong, SoNguoi);
 }