コード例 #1
0
 public MailboxSessionService(
     UserState userState,
     ILocalStorageService LocalStorage,
     AsymmetricCryptoService cryptoService,
     MailboxService mailboxService,
     IMessenger messenger,
     ILogger <MailboxSessionService> logger)
 {
     this.userState      = userState;
     this.localStorage   = LocalStorage;
     this.cryptoService  = cryptoService;
     this.mailboxService = mailboxService;
     this.messenger      = messenger;
     this.logger         = logger;
 }
コード例 #2
0
 public MailboxServiceTests()
 {
     _repository = new Mock <IRepository <NotificationMailBox> >();
     _service    = new MailboxService(_repository.Object);
 }
コード例 #3
0
 public HtmlContentController(MailboxService mailboxService)
 {
     this.mailboxService = mailboxService;
 }