Example #1
0
        public IEnumerable <IMove> GetAllMovesWhereCharacterNameIs(string name)
        {
            var foundCharacter = GetSingleByName(name);

            return(_moveService.GetAllMovesForCharacter(foundCharacter));
        }