public Form_ReporteBalance(Form_Balance form_Balance, string tipo, List <SaldoAnualDataSource> balancean, bool encabeza)
 {
     this.negocioCuenta    = new Cuentan();
     this.negocioEmpresa   = new Empresan();
     this.negocioAsiento   = new asientosn();
     this.negocioParametro = new Parametrosn();
     this.InitializeComponent();
     this.form_Balance = form_Balance;
     this.tipo         = tipo;
     this.saldoanual   = balancean;
     this.encabezado   = encabeza;
     this.GenerarReporte(tipo);
 }
 public Form_ReporteBalance(Form_Balance form_Balance, string tipo, List <SaldosCuentasDataSource> balance, string fecha, bool encabeza, bool terceros)
 {
     // TODO: Complete member initialization
     this.negocioCuenta  = new Cuentan();
     this.negocioEmpresa = new Empresan();
     this.negocioAsiento = new asientosn();
     this.InitializeComponent();
     this.form_Balance = form_Balance;
     this.tipo         = tipo;
     this.balance      = balance;
     this.fecha        = fecha;
     this.encabezado   = encabeza;
     this.terceros     = terceros;
     this.GenerarReporte(tipo);
 }