예제 #1
0
        public SelectCourseModel(IStatistics statsRepo, ICourses repository)
        {
            statistics = statsRepo;
            courses    = repository;

            // TO CREATE A NEW SHEET EVERY TIME WE START THE PROGRAM.
            statistics.CreateSheet(new StatSheet());
        }