30 lines
937 B
C#
30 lines
937 B
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloNotasComprasCorel
|
|
{
|
|
public ModeloNotasComprasCorel()
|
|
{
|
|
ID_NOTAS_COMP_COREL = 0;
|
|
CODIGO = string.Empty;
|
|
FORNEC_CNPJ = string.Empty;
|
|
FORNEC_cProd = string.Empty;
|
|
MEU_cProd = string.Empty;
|
|
}
|
|
public ModeloNotasComprasCorel(int iD_NOTAS_COMP_COREL, string cODIGO, string fORNEC_CNPJ, string fORNEC_cProd, string mEU_cProd)
|
|
{
|
|
ID_NOTAS_COMP_COREL = iD_NOTAS_COMP_COREL;
|
|
CODIGO = cODIGO;
|
|
FORNEC_CNPJ = fORNEC_CNPJ;
|
|
FORNEC_cProd = fORNEC_cProd;
|
|
MEU_cProd = mEU_cProd;
|
|
}
|
|
|
|
public int ID_NOTAS_COMP_COREL { get; set; }
|
|
public string CODIGO { get; set; }
|
|
public string FORNEC_CNPJ { get; set; }
|
|
public string FORNEC_cProd { get; set; }
|
|
public string MEU_cProd { get; set; }
|
|
}
|
|
} |