Beispiel #1
0
 public FacebookService(INodeService nodeService, ICustomerService customerService, IThreadService threadService, IChannelService channelService, IFacebookConversationService facebookConversationService, IFacebookCommentService facebookCommentService, IMessageService messageService, ILoggingService logService)
 {
     _facebookCommentService      = facebookCommentService;
     _facebookConversationService = facebookConversationService;
     _messageService  = messageService;
     _channelService  = channelService;
     _customerService = customerService;
     _threadService   = threadService;
     _nodeService     = nodeService;
     _logService      = logService;
 }
 public FacebookController(IConversationService conversationService, ILoggingService logService, IFacebookService facebookService, INodeService nodeService, IBusinessService businessService, IThreadService threadService, IFacebookCommentService fbCommentService, IFacebookConversationService fbConversationService, IChannelService channelService, IMessageService messageService, IOptions <AppSettings> appSettings)
 {
     _conversationService   = conversationService;
     _fbConversationService = fbConversationService;
     _fbCommentService      = fbCommentService;
     _facebookService       = facebookService;
     _nodeService           = nodeService;
     _channelService        = channelService;
     _messageService        = messageService;
     _threadService         = threadService;
     _businessService       = businessService;
     _logService            = logService;
     _appSettings           = appSettings.Value;
 }