コード例 #1
0
        public async Task <JsonResult> DeleteItem(string id)
        {
            var response = _foodAgent.DeleteFood(id);

            return(await Task.FromResult(Json(response)));
        }