LevelOS-Core/MLL/ModeloEquipContratos.cs

20 lines
568 B
C#

using System;
namespace MLL
{
public class ModeloEquipContratos
{
public ModeloEquipContratos(int iD_EQUIP_CONTRATOS, string cODIGO, string cOD_EQUIP, string cOD_CONTRATO)
{
ID_EQUIP_CONTRATOS = iD_EQUIP_CONTRATOS;
CODIGO = cODIGO;
COD_EQUIP = cOD_EQUIP;
COD_CONTRATO = cOD_CONTRATO;
}
public int ID_EQUIP_CONTRATOS { get; set; }
public string CODIGO { get; set; }
public string COD_EQUIP { get; set; }
public string COD_CONTRATO { get; set; }
}
}