예제 #1
0
        /////////////////////////////////////////////////////////////////////////////////////////////
        #region // Constructors

        /// <summary>
        /// Initializes a new instance of the ObjectRepositoryBase class.
        /// </summary>
        public ObjectRepositoryBase()
        {
            this.spaces      = new Dictionary <string, IObjectSpaceSimple>();
            this.gates       = new List <IGate>();
            this.encoder     = new ObjectEncoderBase();
            this.gateFactory = new GateFactory();
        }
예제 #2
0
        /////////////////////////////////////////////////////////////////////////////////////////////
        #region // Constructors

        /// <summary>
        /// Initializes a new instance of the RepositoryBase class.
        /// </summary>
        public RepositoryBase()
        {
            this.spaces      = new Dictionary <string, ISpace>();
            this.gates       = new List <IGate>();
            this.encoder     = new ResponseEncoder();
            this.gateFactory = new GateFactory();
        }