Пример #1
0
 public TwitterDirectMessageService(
     IConversationService conversationService,
     IMessageService messageService,
     ISocialUserService socialUserService,
     INotificationManager notificationManager
     )
 {
     _conversationService = conversationService;
     _messageService      = messageService;
     _socialUserService   = socialUserService;
     _notificationManager = notificationManager;
 }
Пример #2
0
 public SocialUserAppService(
     ISocialUserService domainService,
     IConversationAppService conversationService,
     IFbClient fbClient,
     ITwitterClient twitterClient
     )
 {
     _domainService       = domainService;
     _conversationService = conversationService;
     _fbClient            = fbClient;
     _twitterClient       = twitterClient;
 }
Пример #3
0
 public ConversationFieldService(
     IDepartmentService departmentService,
     IAgentService agentService,
     ISocialUserService socialUserService,
     IRepository <CustomAwayStatus> statusrRepo,
     IConfigRepository configRepository
     )
 {
     _departmentService = departmentService;
     _agentService      = agentService;
     _socialUserService = socialUserService;
     _statusrRepo       = statusrRepo;
     _configRepository  = configRepository;
 }
Пример #4
0
 public PullJobService(
     IConversationService conversationService,
     IMessageService messageService,
     ISocialUserService socialUserService,
     INotificationManager notificationManager,
     IFbClient fbClient
     )
 {
     _conversationService = conversationService;
     _messageService      = messageService;
     _socialUserService   = socialUserService;
     _notificationManager = notificationManager;
     _fbClient            = fbClient;
     _fbConverter         = new FacebookConverter();
 }
Пример #5
0
 public TwitterService(
     IConversationService conversationService,
     IMessageService messageService,
     ISocialUserService socialUserService,
     ITwitterTweetService tweetServcie,
     ITwitterDirectMessageService directMessageService,
     ITwitterClient twitterClient
     )
 {
     _conversationService  = conversationService;
     _messageService       = messageService;
     _tweetServcie         = tweetServcie;
     _directMessageService = directMessageService;
     _twitterClient        = twitterClient;
 }
Пример #6
0
 public TwitterTweetService(
     IConversationService conversationService,
     IMessageService messageService,
     ISocialUserService socialUserService,
     ISocialAccountService socialAccountService,
     INotificationManager notificationManager,
     ITweetTreeWalker twitterTreeWalker
     )
 {
     _conversationService  = conversationService;
     _messageService       = messageService;
     _socialUserService    = socialUserService;
     _socialAccountService = socialAccountService;
     _twitterTreeWalker    = twitterTreeWalker;
     _notificationManager  = notificationManager;
 }
Пример #7
0
 public AccountController(ISocialUserService socialUserService, ITokenService tokenService)
 {
     _socialUserService = socialUserService;
     _tokenService      = tokenService;
 }
Пример #8
0
 public DependencyResolverBuilder WithSocialUserService(ISocialUserService service)
 {
     _socialUserService = service;
     return(this);
 }