LevelOS/MLL/ModeloEquipamentos.cs

72 lines
2.3 KiB
C#

using System;
using System.Reflection;
using System.Text.RegularExpressions;
namespace MLL
{
public class ModeloEquipamentos
{
public ModeloEquipamentos()
{
ID_EQUIPAMENTOS = 0;
CODIGO = string.Empty;
COD_CLIENTE = string.Empty;
DESCRICAO = string.Empty;
MARCA = string.Empty;
MODELO = string.Empty;
SERIE = string.Empty;
PAT = string.Empty;
OBSERVACOES = string.Empty;
DATA_COMPRA = string.Empty;
REVENDA = string.Empty;
NUM_NF = string.Empty;
NUM_CERTGAR = string.Empty;
CAMPO_BOOL = string.Empty;
CAMPO_DOUBLE = string.Empty;
}
public ModeloEquipamentos(int iD_EQUIPAMENTOS, string cODIGO, string cOD_CLIENTE,
string dESCRICAO, string mARCA, string mODELO, string sERIE, string pAT, string oBSERVACOES,
string dATA_COMPRA, string rEVENDA, string nUM_NF, string nUM_CERTGAR, string cAMPO_BOOL,
string cAMPO_DOUBLE)
{
ID_EQUIPAMENTOS = iD_EQUIPAMENTOS;
CODIGO = cODIGO;
COD_CLIENTE = cOD_CLIENTE;
DESCRICAO = dESCRICAO;
MARCA = mARCA;
MODELO = mODELO;
SERIE = sERIE;
PAT = pAT;
OBSERVACOES = oBSERVACOES;
DATA_COMPRA = dATA_COMPRA;
REVENDA = rEVENDA;
NUM_NF = nUM_NF;
NUM_CERTGAR = nUM_CERTGAR;
CAMPO_BOOL = cAMPO_BOOL;
CAMPO_DOUBLE = cAMPO_DOUBLE;
}
public int ID_EQUIPAMENTOS { get; set; }
public string CODIGO { get; set; }
public string COD_CLIENTE { get; set; }
public string DESCRICAO { get; set; }
public string MARCA { get; set; }
public string MODELO { get; set; }
public string SERIE { get; set; }
public string PAT { get; set; }
public string OBSERVACOES { get; set; }
public string DATA_COMPRA { get; set; }
public string REVENDA { get; set; }
public string NUM_NF { get; set; }
public string NUM_CERTGAR { get; set; }
public string CAMPO_BOOL { get; set; }
public string CAMPO_DOUBLE { get; set; }
}
}