public DeleteComment(ConversationsDbContext <int> context,
                      UserContext userContext,
                      ConversationManagerCollection conversationManagerCollection)
 {
     this.context     = context;
     this.userContext = userContext;
     this.conversationManagerCollection = conversationManagerCollection;
 }
 public GetConversation(ConversationsDbContext <int> context,
                        ConversationManagerCollection conversationManagerCollection,
                        ApplicationDbContext applicationContext,
                        UserContext userContext)
 {
     this.context = context;
     this.conversationManagerCollection = conversationManagerCollection;
     this.applicationContext            = applicationContext;
     this.userContext = userContext;
 }
Beispiel #3
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;
 }