Beispiel #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="BotDataFactory"/> class.
        /// </summary>
        /// <param name="store">The <see cref="IBotDataStore{T}"/></param>
        public BotDataFactory(IBotDataStore <BotData> store)
        {
            store.ThrowIfNull(nameof(store));

            this.store = store;
        }