Example #1
0
 public XRayService(ILogger logger, ChaptersService chaptersService, IAliasesRepository aliasesRepository, IDirectoryService directoryService, ITermsService termsService, IParagraphsService paragraphsService)
 {
     _logger            = logger;
     _chaptersService   = chaptersService;
     _aliasesRepository = aliasesRepository;
     _directoryService  = directoryService;
     _termsService      = termsService;
     _paragraphsService = paragraphsService;
 }
Example #2
0
        public frmCreateXR(
            ITermsService termsService,
            IAliasesRepository aliasesRepository,
            IAmazonClient amazonClient,
            IRoentgenClient roentgenClient,
            IAliasesService aliasesService,
            IDirectoryService directoryService,
            IParagraphsService paragraphsService,
            ILogger logger)
        {
            _termsService      = termsService;
            _aliasesRepository = aliasesRepository;
            _amazonClient      = amazonClient;
            _roentgenClient    = roentgenClient;
            _aliasesService    = aliasesService;
            _directoryService  = directoryService;
            _paragraphsService = paragraphsService;
            _logger            = logger;
            InitializeComponent();

            var pi = dgvTerms.GetType().GetProperty("DoubleBuffered", BindingFlags.Instance | BindingFlags.NonPublic);

            pi?.SetValue(dgvTerms, true, null);
        }
Example #3
0
 public KfxXrayService(ILogger logger, ITermsService termsService, IParagraphsService paragraphsService)
 {
     _logger            = logger;
     _termsService      = termsService;
     _paragraphsService = paragraphsService;
 }
Example #4
0
 public PageCountService(IParagraphsService paragraphsService)
 {
     _paragraphsService = paragraphsService;
 }