public SchoolServiceTest()
        {
            Tests.Initialize();

            this.db = Tests.GetDb();

            this.schoolService = new SchoolService(this.db);

            CreateFakeSchools();
        }
 public ScheduleService(FunScienceDbContext db)
 {
     this.db = db;
 }
 public UserService(FunScienceDbContext db)
 {
     this.db = db;
 }
 public PlayService(FunScienceDbContext db)
 {
     this.db = db;
 }