Пример #1
0
 public GenerateRactablesLinks(ILogger logger, IRackTablesContext racktablesContext, ISmarterTrackContext smarterTrackContext) : base(logger, smarterTrackContext)
 {
     _ractablesContext = racktablesContext ?? throw new ArgumentNullException(nameof(racktablesContext));
     _config           = racktablesContext.Config;
 }
 public UpdateRackTablesAssetsInSmarterTrack(ILogger logger, IRackTablesContext vTiger, ISmarterTrackContext smarterTrack)
     : base(logger)
 {
     _rackTables   = vTiger;
     _smarterTrack = smarterTrack;
 }
Пример #3
0
 public SmarterTrackTicketCloser(ILogger logger, ISmarterTrackContext smarterTrackContext, TicketCloserConfig config) : base(logger, smarterTrackContext)
 {
     _config = config;
 }
Пример #4
0
 protected SmarterTrackJob(ILogger logger, ISmarterTrackContext smarterTrackContext) : base(logger)
 {
     SmarterTrackContext = smarterTrackContext;
     Config       = smarterTrackContext.Config;
     _lazyService = new Lazy <svcTicketsSoapClient>(GetSmarterTrackTicketsService);
 }
 public UpdateVTigerAccountsInSmarterTrack(ILogger logger, IVTigerContext vTiger, ISmarterTrackContext smarterTrack)
     : base(logger)
 {
     _vTiger       = vTiger;
     _smarterTrack = smarterTrack;
 }
 public GenerateSmarterTrackCommentLinks(ILogger logger, ISmarterTrackContext smarterTrack) : base(logger, smarterTrack)
 {
     _config = smarterTrack.Config;
 }
 public UpdateSmarterTrackSoc2CommentType(ILogger logger, ISmarterTrackContext smarterTrack) : base(logger)
 {
     _smarterTrack = smarterTrack;
 }