FrannHammer.Api.Controllers.SmashAttributeTypesController.GetAllCharacterAttributeOfSmashAttributeType C# (CSharp) Method

GetAllCharacterAttributeOfSmashAttributeType() private method

private GetAllCharacterAttributeOfSmashAttributeType ( int id, [ fields = "" ) : IHttpActionResult
id int
fields [
return IHttpActionResult
        public IHttpActionResult GetAllCharacterAttributeOfSmashAttributeType(int id, [FromUri] string fields = "")
        {
            //issue #95 - https://github.com/Frannsoft/FrannHammer/issues/95
            var content = _smashAttributeTypesService.GetAllCharacterAttributeOfSmashAttributeType(id, fields);
            return Ok(content);
        }