Agathas.Storefront.Specs.Uat.BootStrapper.CommandHandlersRegistry.CommandHandlersRegistry C# (CSharp) Method

CommandHandlersRegistry() public method

public CommandHandlersRegistry ( ) : Agathas.Storefront.Application
return Agathas.Storefront.Application
            public CommandHandlersRegistry()
            {
                Scan(s =>
                         {
                             s.Assembly("Agathas.Storefront.Application");
                             s.ConnectImplementationsToTypesClosing(typeof(ICommandHandler<>));
                         });
            }
BootStrapper.CommandHandlersRegistry