Exemplo n.º 1
0
        public async Task <IActionResult> Get(Guid id)
        {
            var meal = await _mealService.GetMealAsync(User.Identity.Name, id);

            return(Ok(meal));
        }