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.Azure.ServiceBus;
11 : using Cqrs.Commands;
12 : using Ninject.Modules;
13 :
14 : namespace Cqrs.Azure.EventHub.CommandBus.Configuration
15 : {
16 : /// <summary>
17 : /// A <see cref="INinjectModule"/> that wires up <see cref="AzureCommandBusPublisher{TAuthenticationToken}"/> as the <see cref="ICommandPublisher{TAuthenticationToken}"/> and other require components.
18 : /// </summary>
19 : /// <typeparam name="TAuthenticationToken">The <see cref="Type"/> of the authentication token.</typeparam>
20 : [Obsolete("Use AzureCommandHubPublisherModule")]
21 : public class AzureCommandBusSenderModule<TAuthenticationToken> : AzureCommandHubPublisherModule<TAuthenticationToken>
22 1 : {
23 : }
24 : }
|