Esempio n. 1
0
        public static DataTable GetBillingItems(double giffiRef)
        {
            int bookingId = DataUtil.GetBookingIdFromGiffiId(giffiRef);

            BillingRepository billRepo = new BillingRepository();

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

            return(billRepo.GetBillingItem(bookingId));
        }