예제 #1
0
        public Program()
        {
            List <Pensiones>       pensiones        = new List <Pensiones>();
            List <Cuentaahorro>    cuentaahorros    = new List <Cuentaahorro>();
            List <CuentaCorriente> cuentaCorrientes = new List <CuentaCorriente>();
            DatosCuenta            DC = new DatosCuenta();

            pensiones = DC.P();
        }
예제 #2
0
 public RepoBanco()
 {
     ad = new DatosCuenta();
 }
예제 #3
0
 public RepoBanco()
 {
     //Se instancia la clase en el constructor para poder utilizarlo desde el inicio
     DC = new DatosCuenta();
 }