public async Task <Response.Pedido> Add(Request.Pedido entity) { if (!IsParameterValid(entity)) { throw new InvalidParametersException <IPedidoAppService>(); } var pedido = await pedidoRepository.Add(entity.ConvertToData()); await Salvar(); return(new Response.Pedido()); }
public async Task <ActionResult> Update([FromBody] Requests.Pedido cliente) { return(Ok(await clienteAppService.Update(cliente, cliente.Id))); }
public async Task <ActionResult> Add([FromBody] Requests.Pedido cliente) { return(Ok(await clienteAppService.Add(cliente))); }