public void GetHeroById()
        {
            //Arrange
            //Act
            var hero = _repository.GetHeroById(1).Result;

            //Assert
            Assert.IsNotNull(hero);
        }