using System; namespace MLL { public class ModeloEquipContratos { public ModeloEquipContratos() { ID_EQUIP_CONTRATOS = 0; CODIGO = string.Empty; COD_EQUIP = string.Empty; COD_CONTRATO = string.Empty; } 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; } } }