LCOV - code coverage report | ||||||||||||||||||
|
||||||||||||||||||
Line data Source code 1 : using Cqrs.Azure.ServiceBus; 2 : using Cqrs.Bus; 3 : 4 : namespace Cqrs.Azure.EventHub.CommandBus.Configuration 5 : { 6 : public class AzureQueuedCommandBusReceiverModule<TAuthenticationToken> : AzureCommandBusReceiverModule<TAuthenticationToken> 7 0 : { 8 1 : public override void RegisterCommandHandlerRegistrar() 9 : { 10 : Bind<ICommandHandlerRegistrar>() 11 : .To<AzureQueuedCommandBusReceiver<TAuthenticationToken>>() 12 : .InSingletonScope(); 13 : } 14 : } 15 : } |
Generated by: LCOV version 1.10 |