示例#1
0
 public clsTRANSACCION(clsCUENTA pObjCuenta, clsDINERO pObjDinero, int pOID, string pNombre, string pFecha) : base(pOID, pNombre)
 {
     this.atrObjCuenta = pObjCuenta;
     clsSERVIDOR_ASOCIACIONES.AsociarUnObjetoCon(this, pObjCuenta.GetColObjsTransaccion());
     this.atrObjDinero = pObjDinero;
     clsSERVIDOR_ASOCIACIONES.AsociarUnObjetoCon(this, pObjDinero.GetColObjsTransaccion());
     this.atrFecha = pFecha;
 }
示例#2
0
        protected internal void crudRegistrarObjTransaccion(clsCUENTA pObjCuenta, int pOID, string pNombre, string pFecha)
        {
            clsSERVIDOR_CRUD_TRANSACCION varInstanciaServidorCrud = clsSERVIDOR_CRUD_TRANSACCION.ObtenerInstancia();

            varInstanciaServidorCrud.crudRegistrarObjeto(pObjCuenta, this, this.GetColObjsTransaccion(), pOID, pNombre, pFecha);
        }
示例#3
0
 protected internal void UnSetObjCuenta()
 {
     this.atrObjCuenta = null;
 }
示例#4
0
 protected internal void SetObjCuenta(clsCUENTA pObjeto)
 {
     this.atrObjCuenta = pObjeto;
 }