public UserApplicationService(LedgerUserManager userManager, LedgerSignInManager signInManager, LedgerRoleManager roleManager, IDomainNotificationHandler domainNotificationHandler, IDomainServiceBus domainServiceBus, IIntegrationServiceBus integrationBus)
     : base(domainNotificationHandler, domainServiceBus, integrationBus)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _roleManager   = roleManager;
 }
 public UserDomainEventHandler(IEmailDispatcher emailDispatcher, LedgerUserManager userManager)
 {
     _emailDispatcher = emailDispatcher;
     _userManager     = userManager;
 }