Пример #1
0
 public TechnicalCertificateImageProcesser(ITechnicalCertificateService technicalCertificateService,
                                           IWordMatcher wordMatcher,
                                           IWordFinder typeFinder,
                                           IWordFinder markAndModelFinder,
                                           IWordFinder chassisNumFinder,
                                           IWordFinder bodyCodeFinder,
                                           IWordFinder colorFinder,
                                           IWordFinder matriculNumFinder,
                                           IWordFinder firstRegistrationDateFinder,
                                           IWordFinder receptionNumFinder,
                                           IWordFinder soNumFinder,
                                           ITechnicalCertificateValidatior validator)
 {
     this.technicalCertificateService = technicalCertificateService;
     this.wordMatcher                 = wordMatcher;
     this.typeFinder                  = typeFinder;
     this.markAndModelFinder          = markAndModelFinder;
     this.chassisNumFinder            = chassisNumFinder;
     this.bodyCodeFinder              = bodyCodeFinder;
     this.colorFinder                 = colorFinder;
     this.matriculNumFinder           = matriculNumFinder;
     this.firstRegistrationDateFinder = firstRegistrationDateFinder;
     this.receptionNumFinder          = receptionNumFinder;
     this.soNumFinder                 = soNumFinder;
     this.validator = validator;
 }
Пример #2
0
 public TechnicalCertificateImageProcesser(IWordMatcher wordMatcher,
                                           IWordFinder typeFinder,
                                           IWordFinder markAndModelFinder,
                                           IWordFinder chassisNumFinder,
                                           IWordFinder bodyCodeFinder,
                                           IWordFinder colorFinder,
                                           IWordFinder matriculNumFinder,
                                           IWordFinder firstRegistrationDateFinder)
 {
     this.wordMatcher                 = wordMatcher;
     this.typeFinder                  = typeFinder;
     this.markAndModelFinder          = markAndModelFinder;
     this.chassisNumFinder            = chassisNumFinder;
     this.bodyCodeFinder              = bodyCodeFinder;
     this.colorFinder                 = colorFinder;
     this.matriculNumFinder           = matriculNumFinder;
     this.firstRegistrationDateFinder = firstRegistrationDateFinder;
 }
 public TechnicalCertificateService(IWordMatcher wordMatcher,
                                    IWordFinder typeFinder,
                                    IWordFinder markAndModelFinder,
                                    IWordFinder chassisNumFinder,
                                    IWordFinder bodyCodeFinder,
                                    IWordFinder colorFinder,
                                    IWordFinder matriculNumFinder,
                                    IWordFinder firstRegistrationDateFinder,
                                    IWordFinder receptionNumFinder,
                                    IWordFinder soNumFinder)
 {
     this.wordMatcher                 = wordMatcher;
     this.typeFinder                  = typeFinder;
     this.markAndModelFinder          = markAndModelFinder;
     this.chassisNumFinder            = chassisNumFinder;
     this.bodyCodeFinder              = bodyCodeFinder;
     this.colorFinder                 = colorFinder;
     this.matriculNumFinder           = matriculNumFinder;
     this.firstRegistrationDateFinder = firstRegistrationDateFinder;
     this.receptionNumFinder          = receptionNumFinder;
     this.soNumFinder                 = soNumFinder;
 }
Пример #4
0
 protected TableMatchingRuleBase(IWordMatcher wordMatcher)
 {
     _wordMatcher = wordMatcher;
 }
 public LinksInLinkTableRule(IWordMatcher wordMatcher)
     : base(wordMatcher)
 {
 }
Пример #6
0
 public PicsInPicTableRule(IWordMatcher wordMatcher) : base(wordMatcher)
 {
 }
Пример #7
0
 public PicsSortedRule(IWordMatcher wordMatcher) : base(wordMatcher)
 {
 }
 protected ElementSortedRuleBase(IWordMatcher wordMatcher)
 {
     _wordMatcher = wordMatcher;
 }
Пример #9
0
 public LinksSortedRule(IWordMatcher wordMatcher) : base(wordMatcher)
 {
 }