Пример #1
0
 public void TinhTrang_Phong_Edit(int HoaDonID, int PhongID)
 {
     PhongDAL doit = new PhongDAL();
     doit.TinhTrang_Phong_Edit(HoaDonID, PhongID);
 }
Пример #2
0
 public DataTable Phong_SoDoCay()
 {
     PhongDAL doit = new PhongDAL();
     return doit.Phong_SoDoCay();
 }
Пример #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);
 }
Пример #4
0
 public List<PhongInfo> Phong_GetItemsOnService()
 {
     PhongDAL doit = new PhongDAL();
     return doit.Phong_GetItemsOnService();
 }
Пример #5
0
 public List<TinhTrang_PhongInfo> Phong_GetItems_ByTinhTrang()
 {
     PhongDAL doit = new PhongDAL();
     return doit.Phong_GetItems_ByTinhTrang();
 }
Пример #6
0
 public List<PhongInfo> Phong_GetItems([Optional, DefaultParameterValue(0)] int PhongID)
 {
     PhongDAL doit = new PhongDAL();
     return doit.Phong_GetItems(PhongID);
 }
Пример #7
0
 public PhongInfo Phong_GetItem(int PhongID)
 {
     PhongDAL doit = new PhongDAL();
     return doit.Phong_GetItem(PhongID);
 }
Пример #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);
 }
Пример #9
0
 public void Phong_Delete(int PhongID)
 {
     PhongDAL doit = new PhongDAL();
     doit.Phong_Delete(PhongID);
 }
Пример #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);
 }