예제 #1
0
        public bool CreateGroup(string name, List <int> studentId)
        {
            Group group = new Group(name, studentId);

            return(dbCtrl.CreateGroup(name, studentId));
        }