Example #1
0
 protected BaseApplicationService(IDomainNotificationHandler domainNotificationHandler, IUnitOfWork <ILedgerActivationDbAbstraction> unitOfWork, IIntegrationServiceBus integrationBus, IDomainServiceBus domainBus)
 {
     _domainNotificationHandler = domainNotificationHandler;
     _unitOfWork     = unitOfWork;
     _integrationBus = integrationBus;
     _domainBus      = domainBus;
 }
Example #2
0
 public ArticleCategoryApplicationService(IArticleCategoryRepository repository, IDomainNotificationHandler domainNotificationHandler, IUnitOfWork <ILedgerBlogDbAbstraction> unitOfWork, IIntegrationServiceBus integrationBus, IDomainServiceBus domainBus) : base(domainNotificationHandler, unitOfWork, integrationBus, domainBus)
 {
     _repository = repository;
 }
Example #3
0
 public AccountService(NutrientUserManager userManager, NutrientSignInManager signInManager, IEmailDispatcher emailDispatcher, IDomainNotificationHandler domainNotificationHandler, IIntegrationServiceBus integrationBus, ILogger <AccountService> logger)
     : base(userManager, domainNotificationHandler, integrationBus, logger)
 {
     _signInManager   = signInManager;
     _emailDispatcher = emailDispatcher;
 }
Example #4
0
 protected ContextService(NutrientUserManager userManager, IDomainNotificationHandler domainNotificationHandler, IIntegrationServiceBus integrationBus, ILogger logger)
     : base(domainNotificationHandler, integrationBus, logger)
 {
     _userManager = userManager;
 }
Example #5
0
 public CompanyApplicationService(ICompanyRepository repository, ICompanyFactory factory, ILocationService locationService, IIdentityResolver identityResolver, IDomainNotificationHandler domainNotificationHandler, IUnitOfWork <ILedgerCompanyDbAbstraction> unitOfWork, IIntegrationServiceBus integrationBus) : base(domainNotificationHandler, unitOfWork, integrationBus)
 {
     _repository       = repository;
     _factory          = factory;
     _locationService  = locationService;
     _identityResolver = identityResolver;
 }
Example #6
0
 public ActivationApplicationService(IActivationRepository repository, IIdentityResolver identityResolver, IDomainNotificationHandler domainNotificationHandler, IUnitOfWork <ILedgerActivationDbAbstraction> unitOfWork, IIntegrationServiceBus integrationBus, IDomainServiceBus domainBus) : base(domainNotificationHandler, unitOfWork, integrationBus, domainBus)
 {
     _repository       = repository;
     _identityResolver = identityResolver;
 }
Example #7
0
 public UserApplicationService(LedgerUserManager userManager, LedgerSignInManager signInManager, LedgerRoleManager roleManager, IDomainNotificationHandler domainNotificationHandler, IDomainServiceBus domainServiceBus, IIntegrationServiceBus integrationBus)
     : base(domainNotificationHandler, domainServiceBus, integrationBus)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _roleManager   = roleManager;
 }
Example #8
0
 protected BaseService(IDomainNotificationHandler domainNotificationHandler, IIntegrationServiceBus integrationBus, ILogger logger)
 {
     _domainNotificationHandler = domainNotificationHandler;
     _integrationBus            = integrationBus;
     _logger = logger;
 }
Example #9
0
 protected BaseApplicationService(IDomainNotificationHandler domainNotificationHandler, IDomainServiceBus domainServiceBus, IIntegrationServiceBus integrationBus)
 {
     _domainNotificationHandler = domainNotificationHandler;
     _domainServiceBus          = domainServiceBus;
     _integrationBus            = integrationBus;
 }
 public ArticleApplicationService(IArticleRepository articleRepository, IArticleCategoryRepository categoryRepository, IIdentityResolver identityResolver, IDomainNotificationHandler domainNotificationHandler, IUnitOfWork <ILedgerBlogDbAbstraction> unitOfWork, IIntegrationServiceBus integrationBus, IDomainServiceBus domainBus) : base(domainNotificationHandler, unitOfWork, integrationBus, domainBus)
 {
     _articleRepository  = articleRepository;
     _categoryRepository = categoryRepository;
     _identityResolver   = identityResolver;
 }
Example #11
0
 public UsersService(IEmailDispatcher emailDispatcher, NutrientUserManager userManager, IDomainNotificationHandler domainNotificationHandler, IIntegrationServiceBus integrationBus, ILogger <UsersService> logger)
     : base(userManager, domainNotificationHandler, integrationBus, logger)
 {
     _emailDispatcher = emailDispatcher;
 }