public ActionResult RemoveStudentFromGroup(RemoveStudentFromGroup model)
        {
            //complete operation
            GroupService service = new GroupService();
            service.RemoveUserFromGroup(db, model.StudentId);

            return RedirectToAction("Index","Group");
        }