Esempio n. 1
0
        // GET: D17
        public ActionResult Index()
        {
            MSBEntities1      db   = new MSBEntities1();
            List <Department> list = db.Departments.ToList();

            ViewBag.DepartmentList = new SelectList(list, "DepartmentId", "DepartmentName");

            return(View());
        }
Esempio n. 2
0
        public ActionResult SaveRecord(EmployeeViewModel model)
        {
            try {
                MSBEntities1 db  = new MSBEntities1();
                Employee     emp = new Employee();
                emp.Name         = model.Name;
                emp.Address      = model.Address;
                emp.DepartmentId = model.DepartmentId;


                db.Employees.Add(emp);

                db.SaveChanges();
                int latestEmpId = emp.EmployeeId;
            }

            catch (Exception ex)
            {
                throw ex;
            }

            return(RedirectToAction("Index"));
        }