public bool CreateGroup(string name, List <int> studentId) { Group group = new Group(name, studentId); return(dbCtrl.CreateGroup(name, studentId)); }