コード例 #1
0
        public ActionResult DisconnectedCustomers()
        {
            if (Session["name"] == null)
                Response.Redirect("Login/loginPage");

            List<SearchModel> customerData = new List<SearchModel>();
            user obj = new user();
            customerData = obj.Disconnected();
            return View(customerData);
        }
コード例 #2
0
 static void timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
 {
     user userObj = new user();
     userObj.populatingDb();
 }
コード例 #3
0
        public ActionResult loginPage(string loginName, string loginPassword)
        {
            FinLoginValidation obj = new FinLoginValidation();

            string role = obj.loginDataValue(loginName, loginPassword);
            if (role == "Administrator")
            {
                //Admin page call statements
                Session["name"] = loginName;
               Response.Redirect("Administrator");
            }
            else if (role == "Representative")
            {
                Session["name"] = loginName;
                Response.Redirect("http://192.168.1.15:8080/CFO/RepPage.html");

            }
            else if (role == "Collection")
            {
                Session["name"] = loginName;
                Response.Redirect("http://192.168.1.15:8080/CFO/CollectionsHome.html");

            }
            else if (role == "Reporting")
            {
                user userObj = new user();
                userObj.populatingDb();
                Session["name"] = loginName;
                Response.Redirect("ReportingHome");

            }
            else
            {
                return View((object)"Invalid User/Password");
            }
            return View((object)"");
        }
コード例 #4
0
 public ActionResult TreatmentHistory(string treatmentAccNo)
 {
     List<ActionModel> customerData = new List<ActionModel>();
     user obj = new user();
     customerData = obj.treatmentHistory(treatmentAccNo);
     return View(customerData);
 }
コード例 #5
0
        public ActionResult StageWiseReport()
        {
            if (Session["name"] == null)
                Response.Redirect("Login/loginPage");

            List<string> StageList = new List<string>();
            user obj = new user();
            StageList = obj.StagewiseReport();
            return View(StageList);
        }
コード例 #6
0
        public ActionResult Search(string customerName, string zipCode)
        {
            List<SearchModel> customerData = new List<SearchModel>();
            user obj = new user();

            customerData=obj.reporting(customerName,zipCode);
            return View(customerData);
            // call function in model to invoke search from database and return a list
        }