Esempio n. 1
0
 public CloseMagic(CoreDbContext context,
                   EmailTemplateRegister emailSender,
                   NotificationsDbContext notificationsDbContext,
                   IOptions <AppConfig> appConfig)
 {
     this.context                = context;
     this.emailSender            = emailSender;
     this.notificationsDbContext = notificationsDbContext;
     this.appConfig              = appConfig;
 }
Esempio n. 2
0
 public SubmitMagic(CoreDbContext context,
                    EmailTemplateRegister emailSender,
                    NotificationsDbContext notificationsDbContext,
                    IOptions <AppConfig> appConfig,
                    UserManager <ApplicationUser> userManager)
 {
     this.context                = context;
     this.emailSender            = emailSender;
     this.notificationsDbContext = notificationsDbContext;
     this.appConfig              = appConfig;
     this.userManager            = userManager;
 }
Esempio n. 3
0
 public OnWorkItemAssigned(
     EventManager manager,
     EmailTemplateRegister emailSender,
     CoreDbContext dbContext,
     IOptions <AppConfig> appConfig,
     NotificationsDbContext notificationsDbContext) : base(manager)
 {
     this.emailSender            = emailSender;
     this.dbContext              = dbContext;
     this.appConfig              = appConfig;
     this.notificationsDbContext = notificationsDbContext;
 }
Esempio n. 4
0
 public OnActivityRecorded(
     EventManager manager,
     EmailTemplateRegister emailSender,
     CoreDbContext dbContext,
     IOptions <AppConfig> appConfig,
     NotificationsDbContext notificationsDbContext,
     UserManager <ApplicationUser> userManager) : base(manager)
 {
     this.emailSender            = emailSender;
     this.dbContext              = dbContext;
     this.appConfig              = appConfig;
     this.notificationsDbContext = notificationsDbContext;
     this.userManager            = userManager;
 }
Esempio n. 5
0
 public AddComment(ConversationsDbContext <int> context,
                   UserContext userContext,
                   ApplicationDbContext applicationDbContext,
                   NotificationsDbContext notificationsDbContext,
                   ConversationManagerCollection conversationManagerCollection,
                   EmailTemplateRegister emailSender,
                   IOptions <AppConfig> appConfig)
 {
     this.context                       = context;
     this.userContext                   = userContext;
     this.applicationDbContext          = applicationDbContext;
     this.notificationsDbContext        = notificationsDbContext;
     this.conversationManagerCollection = conversationManagerCollection;
     this.emailSender                   = emailSender;
     this.appConfig                     = appConfig;
 }