Пример #1
0
        public ActionResult Create([Bind(Include = "Id,Name,Address,Description,Active")] Department department)
        {
            if (ModelState.IsValid)
            {
                departmentServices.CreateDepartment(department);
                return(RedirectToAction("Index"));
            }

            return(View(department));
        }