Ejemplo n.º 1
0
        public async Task <IActionResult> Get(int Id)
        {
            try
            {
                var pedidos = await _repo.GetAllPedidoAsyncById(Id, true);

                var results = _mapper.Map <IEnumerable <PedidoDto> >(pedidos);
                return(Ok(results));
            }
            catch (System.Exception)
            {
                return(this.StatusCode(StatusCodes.Status500InternalServerError, "Banco de Dados Falhou"));
            }
        }
Ejemplo n.º 2
0
        public async Task <IActionResult> Put(int CategoriaId, CategoriaDto model)
        {
            try
            {
                var categoria = await _repo.GetAllPedidoAsyncById(CategoriaId, false);

                if (categoria == null)
                {
                    return(NotFound());
                }

                _mapper.Map(model, categoria);

                _repo.Update(categoria);

                if (await _repo.SaveChangesAsync())
                {
                    return(Created($"/api/categoria/{model.Id}", _mapper.Map <CategoriaDto>(categoria)));
                }
            }
            catch (System.Exception)
            {
                return(this.StatusCode(StatusCodes.Status500InternalServerError, "Banco de Dados Falhou"));
            }

            return(BadRequest());
        }