Exemple #1
0
 //Booking Buyer For address
 public static List <CLayer.Address> GetBookedForUser(long BookingId)
 {
     DataLayer.BookingHistory user = new DataLayer.BookingHistory();
     return(user.GetBookedForUser(BookingId));
 }
Exemple #2
0
 //booking History
 public static List <CLayer.Booking> GetBookingHistoryForSupplier(int status, long userId, int days, int start, int limit, int Type)
 {
     DataLayer.BookingHistory book = new DataLayer.BookingHistory();
     return(book.GetBookingHistoryForSupplier(status, userId, days, start, limit, Type));
 }
Exemple #3
0
 //Booking Buyer address
 public static List <CLayer.Address> BookedByAddressSearch(long BookingId)
 {
     DataLayer.BookingHistory user = new DataLayer.BookingHistory();
     return(user.SearchBookedByAddress(BookingId));
 }
Exemple #4
0
 public static List <CLayer.Booking> GetOtherBookForUser(int status, long userId, int start, int limit)
 {
     DataLayer.BookingHistory book = new DataLayer.BookingHistory();
     return(book.GetOtherBookForUser(status, userId, start, limit));
 }
Exemple #5
0
 public static List <CLayer.Booking> GtbookingCancelledOrFailedOrRejectedBookings(int status, long userId, int days, int start, int limit, int Type)
 {
     DataLayer.BookingHistory book = new DataLayer.BookingHistory();
     return(book.GtbookingCancelledOrFailedOrRejectedBookings(status, userId, days, start, limit, Type));
 }
Exemple #6
0
 public static List <CLayer.Booking> GetBookingApprovalHistoryDetailsForCorporateAdmin(int status, long userId, int days, int start, int limit, int Type)
 {
     DataLayer.BookingHistory book = new DataLayer.BookingHistory();
     return(book.GtBookingApprovalHistoryDetailsForCoroporateAdmin(status, userId, days, start, limit, Type));
 }
Exemple #7
0
 //Added by rahul for displaying the list of offlinebooking in Booking Approval for corporate on 06-02-2020
 public static List <CLayer.Booking> GtOfflineBookingApprovalHistoryForCorporate(int status, long userId, int days, int Start, int Limit, int Type)
 {
     DataLayer.BookingHistory book = new DataLayer.BookingHistory();
     return(book.GtOfflineBookingApprovalHistoryForCorporate(status, userId, days, Start, Limit, Type));
 }