dotnettutorial-asp-dot-net-mvc/AttributeRoutingDemoInMVC/Controllers/StudentsController.cs

51 lines
1.6 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using AttributeRoutingDemoInMVC.Models;
namespace AttributeRoutingDemoInMVC.Controllers
{
public class StudentsController : Controller
{
private static List<Student> students = new List<Student>()
{
new Student() {Id = 1, Name = "Pranaya"},
new Student() {Id = 2, Name = "Priyanka"},
new Student() {Id = 3, Name = "Anurag"},
new Student() {Id = 4, Name = "Sambit"}
};
[HttpGet]
public ActionResult GetAllStudents()
{
return View(students);
}
[HttpGet]
public ActionResult GetStudentByID(int studentID)
{
Student studentDetails = students.FirstOrDefault(s => s.Id == studentID);
return View(studentDetails);
}
[HttpGet]
public ActionResult GetStudentCourses(int studentID)
{
List<string> CourseList = new List<string>();
if (studentID == 1)
CourseList = new List<string>() { "ASP.NET", "C#.NET", "SQL Server" };
else if (studentID == 2)
CourseList = new List<string>() { "ASP.NET MVC", "C#.NET", "ADO.NET" };
else if (studentID == 3)
CourseList = new List<string>() { "ASP.NET WEB API", "C#.NET", "Entity Framework" };
else
CourseList = new List<string>() { "Bootstrap", "jQuery", "AngularJs" };
ViewBag.CourseList = CourseList;
return View();
}
}
}