Ejemplo n.º 1
0
 public ReportController(IBusinessService businessService, IAgentService agentService, IReportService reportService, IFacebookConversationService facebookService, IChannelService channelService, IOptions <AppSettings> appSettings, ILoggingService logService)
 {
     _reportService   = reportService;
     _appSettings     = appSettings.Value;
     _channelService  = channelService;
     _facebookService = facebookService;
     _agentService    = agentService;
     _businessService = businessService;
     _logService      = logService;
 }
Ejemplo n.º 2
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;
 }
Ejemplo n.º 3
0
 public JobController(IThreadService threadService, IFacebookConversationService facebookConversationService, ICustomerService customerService, IConversationService conversationService, IBusinessService businessService, IAgentService agentService, IMessageService messageService, IFacebookService facebookService, IChannelService channelService, IOptions <AppSettings> appSettings, ILoggingService logService)
 {
     _threadService               = threadService;
     _messageService              = messageService;
     _appSettings                 = appSettings;
     _channelService              = channelService;
     _facebookService             = facebookService;
     _agentService                = agentService;
     _businessService             = businessService;
     _conversationService         = conversationService;
     _customerService             = customerService;
     _facebookConversationService = facebookConversationService;
     _logService = logService;
 }
Ejemplo n.º 4
0
 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;
 }
Ejemplo n.º 5
0
 public CustomerController(ICustomerService customerService, IFacebookConversationService facebookConversationService, IBusinessService businessService, ITicketService ticketService, INoteService noteService, IReferralService referralService, IThreadService threadService, IAgentService agentService, IMessageService messageService, IFacebookService facebookService, IChannelService channelService, IOptions <AppSettings> appSettings, ILoggingService logService)
 {
     _customerService             = customerService;
     _messageService              = messageService;
     _appSettings                 = appSettings;
     _channelService              = channelService;
     _facebookService             = facebookService;
     _agentService                = agentService;
     _threadService               = threadService;
     _referralService             = referralService;
     _noteService                 = noteService;
     _ticketService               = ticketService;
     _businessService             = businessService;
     _facebookConversationService = facebookConversationService;
     _logService = logService;
 }