public ByARpt DeleteImp(vImp_Contratos Reg) { manager = new LegalizacionBLL(); return manager.DeleteImp_Contratos(Reg); }
public ByARpt UpdateConf_A(vAdiciones Reg) { manager = new LegalizacionBLL(); return manager.UpdateConf_A(Reg); }
public ByARpt UpdateExo(vCONTRATOS Reg) { manager = new LegalizacionBLL(); return manager.UpdateExo(Reg); }
public List<vCONTRATOS> GetContratos(string Cod_Con) { manager = new LegalizacionBLL(); return manager.GetContrato(Cod_Con); }
public ByARpt InsertRp(vRP_CONTRATOS Reg) { manager = new LegalizacionBLL(); return manager.InsertRp(Reg); }
public ByARpt DeleteRp(vRP_CONTRATOS Reg) { manager = new LegalizacionBLL(); return manager.DeleteRp(Reg); }
public string GetConFContratos(string Cod_Con) { manager = new LegalizacionBLL(); return ByAUtil.convertListToXML(manager.GetContrato(Cod_Con)); }
public string GetRP_Contratos(string Cod_Con) { manager = new LegalizacionBLL(); List<vRP_CONTRATOS> lrp = manager.GetRPContratos(Cod_Con); foreach (vRP_CONTRATOS item in lrp) { item.RUBROS_CONTRATOS = null; } return ByAUtil.convertListToXML(lrp); }
public List<vRP_CONTRATOS> GetRP_ContratosJson(string Cod_Con) { manager = new LegalizacionBLL(); List<vRP_CONTRATOS> lrp = manager.GetRPContratos(Cod_Con); return lrp; }
public List<vInterventores_Contrato> GetInterventoriaJson(string Cod_Con) { manager = new LegalizacionBLL(); return manager.GetInterventoria_Contrato(Cod_Con); }
public List<vPolizas_Contrato> GetPlzContratosJson(string Cod_Con) { manager = new LegalizacionBLL(); return manager.GetPolizas_Contrato(Cod_Con); }
public string GetInterventoria(string Cod_Con) { manager = new LegalizacionBLL(); return ByAUtil.convertListToXML(manager.GetInterventoria_Contrato(Cod_Con)); }
public List<vImp_Contratos> GetImp_ContratosJson(string Cod_Con) { manager = new LegalizacionBLL(); return manager.GetImp_Contratos(Cod_Con); }
public List<vImpuestos> GetImpuestos() { manager = new LegalizacionBLL(); return manager.GetImpuesto(); }
public ByARpt DeleteInter(vInterventores_Contrato Reg) { manager = new LegalizacionBLL(); return manager.DeleteInterventoria(Reg); }
public ByARpt InsertImp(vImp_Contratos Reg) { Reg.USER_REG = Usuario.UserName; manager = new LegalizacionBLL(); return manager.InsertImp_Contratos(Reg); }
public ByARpt DeletePlz(vPolizas_Contrato Reg) { manager = new LegalizacionBLL(); return manager.DeletePoliCon(Reg); }
public ByARpt InsertInter(vInterventores_Contrato Reg) { Reg.USUARIO = Usuario.UserName; manager = new LegalizacionBLL(); return manager.InsertInterventoria(Reg); }
public List<vAseguradoras> GetAseguradoras() { manager = new LegalizacionBLL(); return manager.GetAseguradoras(); }
public ByARpt InsertPlz(vPolizas_Contrato Reg) { manager = new LegalizacionBLL(); return manager.InsertPoliCon(Reg); }
public List<vAdiciones> GetCon_Adiciones(string Cod_Con) { manager = new LegalizacionBLL(); List<vAdiciones> list = new List<vAdiciones>(); vAdiciones p = new vAdiciones(); p.NRO_ADI = Cod_Con; list.Add(p); foreach (var item in manager.GetAdiciones(Cod_Con)) { list.Add(item); } return list; }
public ByARpt InsertImp(vImp_Contratos Reg) { manager = new LegalizacionBLL(); return manager.InsertImp_Contratos(Reg); }