Esempio n. 1
0
        public ActionResult CreateGroup(/*[Bind(Include = "GroupId,Name")]*/ GroupVM group)
        {
            GroupDTO groupDTO = new GroupDTO
            {
                Name = group.Name
            };

            studentsService.CreateGroup(groupDTO);

            return(RedirectToAction("GroupsList"));
        }