49 lines
1.8 KiB
C#
49 lines
1.8 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloOrcas
|
|
{
|
|
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; }
|
|
}
|
|
} |