Ejemplo n.º 1
0
        public ActionResult InsertStudent(Models.WebModels.Student student)
        {
            SQLManager manager = new SQLManager();

            manager.AddStudent(student);
            return(new EmptyResult());
        }
Ejemplo n.º 2
0
        public ActionResult EditStudent(string oleStuId, Models.WebModels.Student student)
        {
            SQLManager manager = new SQLManager();

            manager.UpdateStudent(oleStuId, student);
            return(new EmptyResult());
        }