Example #1
0
 // GET: Employee/Create
 public ActionResult Create()
 {
     ViewBag.DepartmentId = new SelectList(departmentService.GetAllDepartments(), "Id", "DepartmentName");
     ViewBag.RoleId       = new SelectList(service.GetAllRoles(), "Id", "RoleName");
     return(View());
 }