示例#1
0
        public static void GenerateGroupSubjects()
        {
            // GroupSubject

            for (int i = 1; i < 4; i++)
            {
                for (int j = 1; j < 12; j++)
                {
                    GroupSubject gs = GroupSubjectRepo.CreateGroupSubject(i, j, 60);
                    GroupSubjectRepo.AddToDb(gs);
                }
            }
        }