public static void RandomSeed(StudentDbContext context)
        {
            for (int i = 0; i < 100; i++)
            {
                context.Add(StudentGenerator.GenerateStudent());
                context.Add(CourseGenerator.GenerateCourse());
                context.Add(ResourceGenerator.GenerateResource());

                context.SaveChanges();
            }
        }