Esempio n. 1
0
 public TalkService(TalkPersistence talkPersistence, Users users, ContentService contentService, ThumbnailService thumbnailService, ISlackClient slackClient)
 {
     this.talkPersistence  = talkPersistence;
     this.users            = users;
     this.contentService   = contentService;
     this.thumbnailService = thumbnailService;
     this.slackClient      = slackClient;
 }
Esempio n. 2
0
 public ConferenceService(string[] conferenceIds, Dictionary <string, Conference> conferences, ThumbnailService thumbnailService, ConferencePersistence conferencePersistence, ISlackClient slackClient)
 {
     this.conferenceIds         = conferenceIds;
     this.conferences           = conferences;
     this.thumbnailService      = thumbnailService;
     this.conferencePersistence = conferencePersistence;
     this.slackClient           = slackClient;
 }
Esempio n. 3
0
 public SpeakerService(string[] conferenceIds, Dictionary <string, Conference> conferences, Users users, ConferencePersistence conferencePersistence, ThumbnailService thumbnailService, ISlackClient slackClient)
     : base(conferenceIds, conferences, thumbnailService, conferencePersistence, slackClient)
 {
     this.conferenceIds         = conferenceIds;
     this.users                 = users;
     this.conferencePersistence = conferencePersistence;
     this.slackClient           = slackClient;
 }