public PostsController(IPostApplicationService postApplicationService, IChannelApplicationService channelApplicationService, ReposterBot bot, IScheduleItemApplicationService scheduleService)
 {
     _postApplicationService    = postApplicationService;
     _channelApplicationService = channelApplicationService;
     _bot             = bot;
     _scheduleService = scheduleService;
 }
Example #2
0
 public ReposterWorker(AbpTimer timer, IScheduleItemApplicationService scheduleService, IPostApplicationService postService, IChannelApplicationService channelService, ReposterBot bot) : base(timer)
 {
     _scheduleService = scheduleService;
     _postService     = postService;
     _channelService  = channelService;
     _bot             = bot;
     timer.Period     = 1000 * 60;
 }
 public KnownChannelsController(IChannelApplicationService channelService)
 {
     _channelService = channelService;
 }
Example #4
0
 public SaveChannelDetails(IChannelApplicationService channelApplicationService, ILogger <SaveChannelDetails> logger, IObjectMapper objectMapper)
 {
     _channelApplicationService = channelApplicationService;
     _logger       = logger;
     _objectMapper = objectMapper;
 }