Example #1
0
        public static CHeroesProvider Create()
        {
            CHeroesRepository heroesRepository = CHeroesRepository.GetRepository();

            return(new CHeroesProvider(heroesRepository));
        }
Example #2
0
 private CHeroesProvider(CHeroesRepository heroesRepository)
 {
     _heroesRepository = heroesRepository;
 }