Example #1
0
 public static DataTable GetMonthRevenueReport(int month)
 {
     return(RoomBillDAO.GetMonthRevenueReport(month));
 }
Example #2
0
 public static bool InsertBill(RoomBillDTO bill)
 {
     return(RoomBillDAO.InsertRoomBill(bill));
 }
Example #3
0
 public static DataTable GetLeasePayment(string roomID, string date)
 {
     return(RoomBillDAO.GetLeasePayment(roomID, date));
 }