示例#1
0
        public ActionResult login()
        {
            Employee employee = new Employee();

            EmployeeLoginQuery.populateCustomerList(employee);

            foreach (var c in employee.cList)
            {
                CustomerLoginQuerys.populateRequests(c);
                CustomerLoginQuerys.populateServices(c);
            }

            return(View("EmployeeLoggedIn", employee));
        }
示例#2
0
        public IActionResult Submit(IFormCollection collection)
        {
            string vid   = Request.Form["vid"];
            string notes = Request.Form["ServiceNotes"];

            string[] list = Service.getServiceList();

            foreach (var x in list)
            {
                Debug.WriteLine(notes + " <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
                if (collection.ContainsKey(x) && collection[x] != "false")
                {
                    EmployeeQuerys.UpdateServices(vid, x, true);
                }
                else if (collection.ContainsKey(x) && collection[x] == "false")
                {
                    EmployeeQuerys.UpdateServices(vid, x, false);
                }
            }

            if (notes != null && notes != "" && notes != " ")
            {
                EmployeeQuerys.UpdateRequestNotes(vid, notes);
            }

            Employee employee = new Employee();

            EmployeeLoginQuery.populateCustomerList(employee);

            foreach (var c in employee.cList)
            {
                CustomerLoginQuerys.populateRequests(c);
                CustomerLoginQuerys.populateServices(c);
            }

            return(View("EmployeeLoggedIn", employee));
        }