Exemplo n.º 1
0
        public ActionResult AddClass(string id, string name, string school, string department)
        {
            DBIO dbio = new DBIO();

            dbio.AddClass(id, name, school, department);

            ViewBag.notification = "Added class with id= " + id;
            return(View("Notify"));
        }