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

DeleteSmashAttributeType() private method

private DeleteSmashAttributeType ( int id ) : IHttpActionResult
id int
return IHttpActionResult
        public IHttpActionResult DeleteSmashAttributeType(int id)
        {
            _smashAttributeTypesService.Delete<SmashAttributeType>(id);
            return StatusCode(HttpStatusCode.OK);
        }
    }