Esempio n. 1
0
        public ActionResult AddDepartment(string id, string name, string school)
        {
            DBIO dbio = new DBIO();

            dbio.AddDepartment(id, name, school);

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