public bool StudentAddInGroup(int userId, int groupId) { StudentGroupDTO studentA = new StudentGroupDTO(1, userId, groupId); StudentGroup student = new StudentGroup(); return(student.Add(studentA)); }