using System; using System.Security.Cryptography; namespace MLL { public class ModeloOrcas { public ModeloOrcas() { ID_ORCAS = 0; CODIGO = string.Empty; OPERADOR = string.Empty; TOTAL = string.Empty; DIA = string.Empty; COMISSAO = string.Empty; CLIENTE = string.Empty; DESCONTO = string.Empty; TOTAL_SERVICOS = string.Empty; TOTAL_PECAS = string.Empty; TOTAL_IMPOSTOS = string.Empty; VENCIMENTO = string.Empty; TOTAL_GERAL = string.Empty; SITUACAO = string.Empty; CLIENTE_CAD = string.Empty; CLIENTE_NOME = string.Empty; OBS = string.Empty; } public ModeloOrcas(int iD_ORCAS, string cODIGO, string oPERADOR, string tOTAL, string dIA, string cOMISSAO, string cLIENTE, string dESCONTO, string tOTAL_SERVICOS, string tOTAL_PECAS, string tOTAL_IMPOSTOS, string vENCIMENTO, string tOTAL_GERAL, string sITUACAO, string cLIENTE_CAD, string cLIENTE_NOME, string oBS) { ID_ORCAS = iD_ORCAS; CODIGO = cODIGO; OPERADOR = oPERADOR; TOTAL = tOTAL; DIA = dIA; COMISSAO = cOMISSAO; CLIENTE = cLIENTE; DESCONTO = dESCONTO; TOTAL_SERVICOS = tOTAL_SERVICOS; TOTAL_PECAS = tOTAL_PECAS; TOTAL_IMPOSTOS = tOTAL_IMPOSTOS; VENCIMENTO = vENCIMENTO; TOTAL_GERAL = tOTAL_GERAL; SITUACAO = sITUACAO; CLIENTE_CAD = cLIENTE_CAD; CLIENTE_NOME = cLIENTE_NOME; OBS = oBS; } public int ID_ORCAS { get; set; } public string CODIGO { get; set; } public string OPERADOR { get; set; } public string TOTAL { get; set; } public string DIA { get; set; } public string COMISSAO { get; set; } public string CLIENTE { get; set; } public string DESCONTO { get; set; } public string TOTAL_SERVICOS { get; set; } public string TOTAL_PECAS { get; set; } public string TOTAL_IMPOSTOS { get; set; } public string VENCIMENTO { get; set; } public string TOTAL_GERAL { get; set; } public string SITUACAO { get; set; } public string CLIENTE_CAD { get; set; } public string CLIENTE_NOME { get; set; } public string OBS { get; set; } } }