Ejemplo n.º 1
0
        public IActionResult GetAllCharacterAttributesWithName(string name)
        {
            var content  = _characterAttributeRowService.GetAllWhereName(name);
            var resource = _enrichmentProvider.EnrichManyCharacterAttributeRowResources(content);

            return(Result(resource));
        }
Ejemplo n.º 2
0
        public IHttpActionResult GetAllCharacterAttributesWithName(string name)
        {
            var content = _characterAttributeRowService.GetAllWhereName(name);

            return(Result(content));
        }