コード例 #1
0
 public ConferenceController(IConferenceService conferenceService
                             , IExchangeServiceClient exchangeServiceClient)
 {
     this.conferenceService     = conferenceService;
     this.exchangeServiceClient = exchangeServiceClient;
     mailboxPolling             = new MailboxPolling(exchangeServiceClient);
 }
コード例 #2
0
 public MailboxPolling(IExchangeServiceClient exchangeServiceClient)
 {
     _exchangeServiceClient   = exchangeServiceClient;
     this.Credentials         = GetCredential();
     _exchangeConfigurationId = new Guid();
 }