public DataTable Last_15Days_reportBLL(string TodayDate)
        {
            ReportingDAL aReportingDAL = new ReportingDAL();
            DataTable    dTable        = aReportingDAL.Current_Month_reportDAL(TodayDate);

            return(dTable);
        }
        public DataTable Current_week_reportBLL(string TodayDate)
        {
            ReportingDAL aReportingDAL = new ReportingDAL();
            DataTable    dTable        = aReportingDAL.Current_week_reportDAL(TodayDate);

            return(dTable);
        }
        public DataTable AllRoomDetaisBLL()
        {
            ReportingDAL aReportingDAL = new ReportingDAL();
            DataTable    dTable        = aReportingDAL.AllRoomDetaisDAL();

            return(dTable);
        }
        public DataTable Specific_Customer_DetailsBLL(Customer aCustomer, string ReportType)
        {
            ReportingDAL aReportingDAL = new ReportingDAL();
            DataTable    dTable        = aReportingDAL.Specific_Customer_DetailsDAL(aCustomer);

            return(dTable);
        }
        public DataTable Customer_Billing_SlipBLL(Customer aCustomer, string ReportType)
        {
            ReportingDAL aReportingDAL = new ReportingDAL();
            DataTable    dTable        = aReportingDAL.Customer_Billing_SlipDAL(aCustomer);

            return(dTable);
        }
Esempio n. 6
0
        public void GetReportData()
        {
            var dal = new ReportingDAL(conn);

            List <LogHolder> logs = dal.GetReportsForTimeSpan(DateTime.Today.AddDays(-4), DateTime.Today.AddDays(1));

            Assert.IsNotNull(logs);
            Assert.IsTrue(logs.Count > 0);
        }
Esempio n. 7
0
 public List <CLSVendorProduct> GetVendorProducts()
 {
     return(ReportingDAL.FetchVendorProducts(_connection));
 }
Esempio n. 8
0
 public List <CLSEmployee> GetEmployeeDirectory()
 {
     return(ReportingDAL.FetchCLSEmployees(_connection));
 }
Esempio n. 9
0
 public List <CLSPackDetails> FetchPackingDetails(ShippingOrder order)
 {
     return(ReportingDAL.FetchCLSPackDetails(order, _connection));
 }
Esempio n. 10
0
 public static DataTable ReportLookup(DateTime startDate)
 {
     return(ReportingDAL.ReportLookup(startDate));
 }