Exemple #1
0
        public async Task <ActionResult> Update(int id, [FromBody] MealDto mealDto)
        {
            mealDto.Id = id;
            await _mealsService.UpdateAsync(mealDto);

            return(NoContent());
        }