Line data Source code
1 : #region Copyright
2 : // // -----------------------------------------------------------------------
3 : // // <copyright company="Chinchilla Software Limited">
4 : // // Copyright Chinchilla Software Limited. All rights reserved.
5 : // // </copyright>
6 : // // -----------------------------------------------------------------------
7 : #endregion
8 :
9 : using System;
10 : using Cqrs.Events;
11 : using Ninject.Modules;
12 :
13 : namespace Cqrs.Ninject.InProcess.EventStore.Configuration
14 : {
15 : /// <summary>
16 : /// A <see cref="INinjectModule"/> that configures the <see cref="InProcessEventStore{TAuthenticationToken}"/> as a <see cref="IEventStore{TAuthenticationToken}"/>.
17 : /// </summary>
18 : /// <typeparam name="TAuthenticationToken">The <see cref="Type"/> of the authentication token.</typeparam>
19 : [Obsolete("Use Cqrs.Ninject.Configuration.InProcessEventStoreModule<TAuthenticationToken> instead.")]
20 : public class InProcessEventStoreModule<TAuthenticationToken> : Ninject.Configuration.InProcessEventStoreModule<TAuthenticationToken>
21 1 : {
22 : }
23 : }
|