// ===============================================================================
 //                                                                     Constructor
 //                                                                     ===========
 public InternalBeanArrayMetaDataResultSetHandler(IBeanMetaData beanMetaData, IRowCreator rowCreator, IRelationRowCreator relationRowCreator)
     : base(beanMetaData, rowCreator, relationRowCreator)
 {
 }
Ejemplo n.º 2
0
        protected IRelationRowCreator _relationRowCreator;                                  // [DAONET-56] (2007/08/29)

        // ===============================================================================
        //                                                                     Constructor
        //                                                                     ===========
        public InternalAbstractBeanMetaDataResultSetHandler(IBeanMetaData beanMetaData, IRowCreator rowCreator, IRelationRowCreator relationRowCreator)
        {
            _beanMetaData       = beanMetaData;
            _rowCreator         = rowCreator;
            _relationRowCreator = relationRowCreator;
        }