Example #1
0
        public ActionResult AddOrRemoveProduto(ProdutoClienteDTO pcDTO)
        {
            var pc = _mapper.Map <ProdutoCliente>(pcDTO);

            try
            {
                if (pc.Tipo == "1")
                {
                    _clientesService.AddProduto(pc);
                }
                else
                {
                    _clientesService.RemoveProduto(pc.IdProduto, pc.IdCliente);
                }

                return(NoContent());
            }
            catch (Exception ex)
            {
                return(BadRequest(new { message = ex.Message }));
            }
        }