示例#1
0
        public static DataTable GetBillingItems(double giffiRef)
        {
            int bookingId = DataUtil.GetBookingIdFromGiffiId(giffiRef);

            BillingRepository billRepo = new BillingRepository();

            return(billRepo.GetBillingItem(bookingId));
        }
示例#2
0
        public static DataTable GetBillingItems(int bookingId)
        {
            BillingRepository billRepo = new BillingRepository();

            return(billRepo.GetBillingItem(bookingId));
        }