FrannHammer.Api.Controllers.SmashAttributeTypesController.GetAllCharacterAttributeOfSmashAttributeType C# (CSharp) 메소드

GetAllCharacterAttributeOfSmashAttributeType() 개인적인 메소드

private GetAllCharacterAttributeOfSmashAttributeType ( int id, [ fields = "" ) : IHttpActionResult
id int
fields [
리턴 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);
        }