FrannHammer.Api.Controllers.SmashAttributeTypesController.GetSmashAttributeTypes C# (CSharp) Méthode

GetSmashAttributeTypes() private méthode

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