public async Task <IActionResult> Delete([FromRoute] int id) { try { var platform = await _categories.DeleteAsync(id); return(NoContent()); } catch (Exception) { return(NotFound()); } }