Ejemplo n.º 1
0
        public ActionResult GetStudent()
        {
            IEnumerable <StudentModel> students = obj.GetStudent();

            return(Json(students));
        }
Ejemplo n.º 2
0
 public Model.Student GetStudent(int Id)
 {
     DAL.Student dal = new DAL.Student();
     return(dal.GetStudent(Id));
 }