public CategoryService( IActionsContextFactory actionSessionFactory, IBus bus) { this.actionSessionFactory = actionSessionFactory; Bus = bus; }
public AddressService( IUsersContextFactory usersSessionFactory, Func <INoSqlSession> mongoDbSessionFactory, IActionsContextFactory actionSessionFactory, IBus bus) { this.usersSessionFactory = usersSessionFactory; this.noSqlSessionFactory = mongoDbSessionFactory; this.actionSessionFactory = actionSessionFactory; this.bus = bus; }
public ProjectService( IActionsContextFactory actionSessionFactory, Func <INoSqlSession> noSqlSessionFactory, IUsersContextFactory userSessionFactory, ICache cache, IBus bus) { this.noSqlSessionFactory = noSqlSessionFactory; this.actionSessionFactory = actionSessionFactory; this.userSessionFactory = userSessionFactory; this.bus = bus; this.cache = cache; }
public SponsorService( IUsersContextFactory usersSessionFactory, Func <INoSqlSession> mongoDbSessionFactory, IActionsContextFactory actionSessionFactory, OrganizationService organizationService, ICache cache, IBus bus, ILogger logger) { this.usersSessionFactory = usersSessionFactory; this.noSqlSessionFactory = mongoDbSessionFactory; this.actionSessionFactory = actionSessionFactory; this.organizationService = organizationService; this.cache = cache; this.bus = bus; this.logger = logger; }
public NotificationService( IActionsContextFactory actionsSessionFactory, IUsersContextFactory usersSessionFactory, ProjectService projectService, OrganizationService organizationService, Func <INoSqlSession> noSqlSessionFactory, IVotingContextFactory votingSessionFactory, ILogger logger) { this.actionsSessionFactory = actionsSessionFactory; this.usersSessionFactory = usersSessionFactory; this.projectService = projectService; this.noSqlSessionFactory = noSqlSessionFactory; this.votingSessionFactory = votingSessionFactory; this.organizationService = organizationService; this.logger = logger; }
public NewsLetterNotification(IMailSender mailSender, ILogger logger, IActionsContextFactory context, IUsersContextFactory usersContextFactory) : base(mailSender, logger, context, usersContextFactory) { }
public UserConfirmedNotification(IMailSender mailSender, ILogger logger, IActionsContextFactory context, IUsersContextFactory usersContextFactory) : base(mailSender, logger, context, usersContextFactory) { IncludeUnsubscribe = false; }
public ChangePasswordNotification(IMailSender mailSender, ILogger logger, IActionsContextFactory context, IUsersContextFactory usersContextFactory) : base(mailSender, logger, context, usersContextFactory) { }
public ObjectCreatedNotification(IMailSender mailSender, ILogger logger, IActionsContextFactory context, IUsersContextFactory usersContextFactory) : base(mailSender, logger, context, usersContextFactory) { IncludeUnsubscribe = true; }
public NotificationTaskServiceBase(IMailSender mailSender, ILogger logger, IActionsContextFactory actionsContextFactory, IUsersContextFactory usersContextFactory) : base(mailSender, null, logger) { this.actionsContextFactory = actionsContextFactory; this.usersContextFactory = usersContextFactory; }
public PrivateMessage(IMailSender mailSender, ILogger logger, IActionsContextFactory context, IUsersContextFactory usersContextFactory) : base(mailSender, logger, context, usersContextFactory) { }