コード例 #1
0
        public void Dispose()
        {
            _betRepository          = null;
            _categoryRepository     = null;
            _gamePropertyRepository = null;
            _movieRepository        = null;
            _nominationRepository   = null;
            _viewModelsRepository   = null;
            _watchedMovieRepository = null;

            _externalLoginRepository = null;
            _userRepository          = null;

            _context.Dispose();
        }
コード例 #2
0
 public GamePropertyService(IGamePropertyRepository gamePropertyRepository)
 {
     _gamePropertyRepository = gamePropertyRepository;
 }