Ejemplo n.º 1
0
 public async Task <ItemPedido> SelecionarId(int id)
 {
     try
     {
         return(await _itemPedidoRepository.SelecionarId(id) ??
                throw new KeyNotFoundException("Item do pedido não encontrado"));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }