LevelOS-Core/MLL/ModeloNotasItensRastreabilidade.cs

39 lines
1.3 KiB
C#

using System;
namespace MLL
{
public class ModeloNotasItensRastreabilidade
{
public ModeloNotasItensRastreabilidade()
{
ID_NOTAS_ITENS_RASTRE = 0;
CODIGO = string.Empty;
COD_ITEM = string.Empty;
this.NLote = string.Empty;
this.QLote = string.Empty;
this.DFab = string.Empty;
this.DVal = string.Empty;
this.CAgreg = string.Empty;
}
public ModeloNotasItensRastreabilidade(int iD_NOTAS_ITENS_RASTRE, string cODIGO, string cOD_ITEM, string nLote, string qLote, string dFab, string dVal, string cAgreg)
{
ID_NOTAS_ITENS_RASTRE = iD_NOTAS_ITENS_RASTRE;
CODIGO = cODIGO;
COD_ITEM = cOD_ITEM;
this.NLote = nLote;
this.QLote = qLote;
this.DFab = dFab;
this.DVal = dVal;
this.CAgreg = cAgreg;
}
public int ID_NOTAS_ITENS_RASTRE { get; set; }
public string CODIGO { get; set; }
public string COD_ITEM { get; set; }
public string NLote { get; set; }
public string QLote { get; set; }
public string DFab { get; set; }
public string DVal { get; set; }
public string CAgreg { get; set; }
}
}