public GameRatingService(DbEntitiesContext context)
 {
     gameRatingRepository = new GameRatingRepository(context);
 }
 public GameRatingService()
     : base()
 {
     gameRatingRepository = new GameRatingRepository();
 }