public PhotoGameScoreService(IPhotoGameScoreRepository photoGameScoreRepo)
 {
     _photoGameScoreRepo = photoGameScoreRepo;
 }
 public PhotoGameScoreService(GameContext context)
 {
     _photoGameScoreRepo = new PhotoGameScoreRepository(context);
 }