public ActionResult Index()
 {
     ViewBag.Departments = _departmentManager.GetAllDepartment();
     return(View());
 }
        private List <Department> GetAllDepartments()
        {
            var departmentlist = departmentManager.GetAllDepartment();

            return(departmentlist);
        }
 public ActionResult ViewAll()
 {
     ViewBag.DepartmentList = aDepartmentManager.GetAllDepartment();
     return(View());
 }
 public ActionResult Save()
 {
     ViewBag.departments = departmentManager.GetAllDepartment();
     return(View());
 }
 public ActionResult AllDepartmentView()
 {
     //ViewBag.AllDept = aDepartmentsManager.GetAllDepartment();
     ViewBag.allDepartmentseList = aDepartmentsManager.GetAllDepartment();
     return(View());
 }
        public ActionResult Index()
        {
            List <Department> departments = _departmentManager.GetAllDepartment();

            return(View(departments));
        }
Exemple #7
0
 public ActionResult StudentRegistration()
 {
     ViewBag.AllDepartment = aDepartmentManager.GetAllDepartment();
     return(View());
 }
 //To Be Done: Teacher save(story 6), Course Assign (story 5) and Course Unassign(story 13)
 public ActionResult SaveTeacher()
 {
     ViewBag.department  = aDepartmentManager.GetAllDepartment();
     ViewBag.designation = aTeacherManager.GetAllDesignation();
     return(View());
 }
 public ActionResult Index()
 {
     ViewBag.Departments = _departmentManager.GetAllDepartment();
     ViewBag.Semesters   = _semesterManager.GetAllSemesters();
     return(View());
 }
 public ActionResult Index()
 {
     ViewBag.Departments  = _departmentManager.GetAllDepartment();
     ViewBag.Designations = _designationTeacherManager.GetAllDesignation();
     return(View());
 }
Exemple #11
0
        public ActionResult ViewDepartment()
        {
            List <Department> departments = manager.GetAllDepartment();

            return(View(departments));
        }
 public ActionResult ViewClassRoomAllocation()
 {
     ViewBag.AllDepartment = aDepartmentManager.GetAllDepartment();
     return(View());
 }
Exemple #13
0
        // GET: Department
        public ActionResult Index()
        {
            IEnumerable <Department> departments = aDepartmentManager.GetAllDepartment();

            return(View(departments));
        }
 //To Be Done: Course save(story 3),View Course Stat(story 6)
 public ActionResult SaveCourse()
 {
     ViewBag.department = aDepartmentManager.GetAllDepartment();
     ViewBag.semester   = aCourseManager.GetAllSemester();
     return(View());
 }
Exemple #15
0
        // GET: Department

        public ActionResult DepartmentView()
        {
            ViewBag.AllDepartment = aDepartmentManager.GetAllDepartment();
            return(View());
        }
Exemple #16
0
 private List <Department> GetAllDepartments()
 {
     return(departmentManager.GetAllDepartment());
 }