Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SendToChannelConversationService"/> class.
 /// </summary>
 /// <param name="bfsClient">The BFS client service.</param>
 /// <param name="teamRepository">The team repository service.</param>
 public SendToChannelConversationService(
     BFSClient bfsClient,
     TeamRepository teamRepository)
 {
     this.bfsClient      = bfsClient;
     this.teamRepository = teamRepository;
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SendToConversationFunction"/> class.
 /// </summary>
 /// <param name="bfsClient">BFS client.</param>
 /// <param name="teamRepository">Team data repository.</param>
 /// <param name="sendToChannelConversationService">Send to channel conversation service.</param>
 public SendToConversationFunction(
     BFSClient bfsClient,
     TeamRepository teamRepository,
     SendToChannelConversationService sendToChannelConversationService)
 {
     this.bfsClient      = bfsClient;
     this.teamRepository = teamRepository;
     this.sendToChannelConversationService = sendToChannelConversationService;
 }