28 lines
923 B
C#
28 lines
923 B
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloNotasItensRastreabilidade
|
|
{
|
|
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; }
|
|
}
|
|
} |