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;
 }
Exemplo n.º 10
0
 public List<vInterventores_Contrato> GetInterventoriaJson(string Cod_Con)
 {
     manager = new LegalizacionBLL();
     return manager.GetInterventoria_Contrato(Cod_Con);
 }
Exemplo n.º 11
0
 public List<vPolizas_Contrato> GetPlzContratosJson(string Cod_Con)
 {
     manager = new LegalizacionBLL();
     return manager.GetPolizas_Contrato(Cod_Con);
 }
Exemplo n.º 12
0
 public string GetInterventoria(string Cod_Con)
 {
     manager = new LegalizacionBLL();
     return ByAUtil.convertListToXML(manager.GetInterventoria_Contrato(Cod_Con));
 }
Exemplo n.º 13
0
 public List<vImp_Contratos> GetImp_ContratosJson(string Cod_Con)
 {
     manager = new LegalizacionBLL();
     return manager.GetImp_Contratos(Cod_Con);
 }
Exemplo n.º 14
0
 public List<vImpuestos> GetImpuestos()
 {
     manager = new LegalizacionBLL();
     return manager.GetImpuesto();
 }
Exemplo n.º 15
0
 public ByARpt DeleteInter(vInterventores_Contrato Reg)
 {
     manager = new LegalizacionBLL();
     return manager.DeleteInterventoria(Reg);
 }
Exemplo n.º 16
0
 public ByARpt InsertImp(vImp_Contratos Reg)
 {
     Reg.USER_REG = Usuario.UserName;
     manager = new LegalizacionBLL();
     return manager.InsertImp_Contratos(Reg);
 }
Exemplo n.º 17
0
 public ByARpt DeletePlz(vPolizas_Contrato Reg)
 {
     manager = new LegalizacionBLL();
     return manager.DeletePoliCon(Reg);
 }
Exemplo n.º 18
0
 public ByARpt InsertInter(vInterventores_Contrato Reg)
 {
     Reg.USUARIO = Usuario.UserName;
     manager = new LegalizacionBLL();
     return manager.InsertInterventoria(Reg);
 }
Exemplo n.º 19
0
 public List<vAseguradoras> GetAseguradoras()
 {
     manager = new LegalizacionBLL();
     return manager.GetAseguradoras();
 }
Exemplo n.º 20
0
 public ByARpt InsertPlz(vPolizas_Contrato Reg)
 {
     manager = new LegalizacionBLL();
     return manager.InsertPoliCon(Reg);
 }
Exemplo n.º 21
0
 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;
 }
Exemplo n.º 22
0
 public ByARpt InsertImp(vImp_Contratos Reg)
 {
     manager = new LegalizacionBLL();
     return manager.InsertImp_Contratos(Reg);
 }