Пример #1
0
    protected void generaDeuda()
    {
        Funciones  Objeto       = new Funciones();
        SqlCommand comandoTigre = new SqlCommand();
        DataTable  dtTigre      = new DataTable();
        DataSet    DsTigre      = new DataSet();
        Int32      cuenta       = Convert.ToInt32(Session["NroCuenta"]);
        Int32      liquidacion  = 1;

        comandoTigre = Objeto.ArmarParametrosGererarDeudaCopiaFiel(comandoTigre, cuenta, liquidacion);
        Objeto.Ejecutar_SP_C_Select_Tigre("WebCopiaPlano_CtaCte_Ins", comandoTigre, DsTigre);
        dtTigre = DsTigre.Tables[0];
        nuevaPagina(dtTigre.Rows[0][0].ToString());
    }