Esempio n. 1
0
        public bool StudentAddInGroup(int userId, int groupId)
        {
            StudentGroupDTO studentA = new StudentGroupDTO(1, userId, groupId);
            StudentGroup    student  = new StudentGroup();

            return(student.Add(studentA));
        }