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.Bus;
11 : using Cqrs.Commands;
12 : using Ninject.Modules;
13 :
14 : namespace Cqrs.Ninject.InProcess.CommandBus.Configuration
15 : {
16 : /// <summary>
17 : /// A <see cref="INinjectModule"/> that configures the <see cref="InProcessBus{TAuthenticationToken}"/> as a <see cref="ICommandPublisher{TAuthenticationToken}"/> and <see cref="ICommandReceiver"/>.
18 : /// </summary>
19 : /// <typeparam name="TAuthenticationToken">The <see cref="Type"/> of the authentication token.</typeparam>
20 : [Obsolete("Use Cqrs.Ninject.Configuration.InProcessCommandBusModule<TAuthenticationToken> instead.")]
21 : public class InProcessCommandBusModule<TAuthenticationToken> : Ninject.Configuration.InProcessCommandBusModule<TAuthenticationToken>
22 1 : {
23 : }
24 : }
|