sudo apt-get update
sudo apt-get install \
ca-certificates \
curl \
gnupg \
lsb-release
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class DadosRelatorio | |
{ | |
public int PedidoId { get; set; } | |
public DateTime DataPedido { get; set; } | |
public int ClienteId { get; set; } | |
public string NomeCliente { get; set; } | |
public int ProdutoId { get; set; } | |
public string DescricaoProduto { get; set; } | |
public double PrecoProduto { get; set; } | |
public double Quantidade { get; set; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using Devcompy.Models.Entities.Financeiro; | |
using Devcompy.Repositories.Business2.Financeiros.Models; | |
using Devcompy.Repositories.Business2.Pessoas; | |
using Devcompy.Lib; | |
using System.Configuration; | |
using Devcompy.Repositories.Business2.Estoques.Enums; |