Esempio n. 1
0
        public List <String> StagewiseReport()
        {
            List <string> StagewiseList             = new List <string>();
            DatabaseAccessForReporting ReportingObj = new DatabaseAccessForReporting();

            StagewiseList = ReportingObj.StageWiseReport();
            return(StagewiseList);
        }
Esempio n. 2
0
        public List <SearchModel> Disconnected()
        {
            List <SearchModel>         customerData = new List <SearchModel>();
            DatabaseAccessForReporting ReportingObj = new DatabaseAccessForReporting();

            customerData = ReportingObj.SearchByDisconnected();
            return(customerData);
        }
Esempio n. 3
0
        public List <ActionModel> treatmentHistory(string number)
        {
            List <ActionModel>         customerData = new List <ActionModel>();
            DatabaseAccessForReporting ReportingObj = new DatabaseAccessForReporting();

            customerData = ReportingObj.searchTreatment(number);
            return(customerData);
        }
Esempio n. 4
0
        public List <SearchModel> Delinquent()
        {
            List <SearchModel>         customerData = new List <SearchModel>();
            DatabaseAccessForReporting ReportingObj = new DatabaseAccessForReporting();

            customerData = ReportingObj.SearchByDelinquent();
            return(customerData);
        }
Esempio n. 5
0
        public List <SearchModel> reporting(string custName, string Zip)
        {
            List <SearchModel>         customerData = new List <SearchModel>();
            DatabaseAccessForReporting ReportingObj = new DatabaseAccessForReporting();

            customerData = ReportingObj.Search(custName, Zip);
            return(customerData);
        }
Esempio n. 6
0
        public void populatingDb()
        {
            DatabaseAccessForReporting ReportingObj = new DatabaseAccessForReporting();

            ReportingObj.populatingCustomerDb();
        }