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

GetSmashAttributeTypes() private method

private GetSmashAttributeTypes ( [ fields = "" ) : IHttpActionResult
fields [
return IHttpActionResult
        public IHttpActionResult GetSmashAttributeTypes([FromUri] string fields = "")
        {
            var content = _smashAttributeTypesService.GetAll<SmashAttributeType, SmashAttributeTypeDto>(fields);
            return Ok(content);
        }