public CorrProtGeneralDataPointService(
     IMarkOperatingConditionsRepo markOperatingConditionsRepo,
     ICorrProtVariantRepo corrProtVariantRepo,
     ICorrProtMethodRepo corrProtMethodRepo,
     ICorrProtCleaningDegreeRepo corrProtCleaningDegreeRepo,
     ICorrProtCoatingRepo corrProtCoatingRepo,
     IPrimerRepo primerRepo)
 {
     _markOperatingConditionsRepo = markOperatingConditionsRepo;
     _corrProtVariantRepo         = corrProtVariantRepo;
     _corrProtMethodRepo          = corrProtMethodRepo;
     _corrProtCleaningDegreeRepo  = corrProtCleaningDegreeRepo;
     _corrProtCoatingRepo         = corrProtCoatingRepo;
     _primerRepo = primerRepo;
 }
示例#2
0
 public MarkOperatingConditionsService(
     IMarkOperatingConditionsRepo markOperatingConditionsRepo,
     IMarkRepo markRepo,
     IOperatingAreaRepo operatingAreaRepo,
     IGasGroupRepo gasGroupRepo,
     IEnvAggressivenessRepo envAggressivenessRepo,
     IConstructionMaterialRepo constructionMaterialRepo,
     IPaintworkTypeRepo paintworkTypeRepo,
     IHighTensileBoltsTypeRepo highTensileBoltsTypeRepo)
 {
     _repository               = markOperatingConditionsRepo;
     _markRepo                 = markRepo;
     _operatingAreaRepo        = operatingAreaRepo;
     _gasGroupRepo             = gasGroupRepo;
     _envAggressivenessRepo    = envAggressivenessRepo;
     _constructionMaterialRepo = constructionMaterialRepo;
     _paintworkTypeRepo        = paintworkTypeRepo;
     _highTensileBoltsTypeRepo = highTensileBoltsTypeRepo;
 }
 public GeneralDataDocumentService(
     IMarkRepo markRepo,
     IMarkApprovalRepo markApprovalRepo,
     IEmployeeRepo employeeRepo,
     IDocRepo docRepo,
     IMarkGeneralDataPointRepo markGeneralDataPointRepo,
     IMarkLinkedDocRepo markLinkedDocRepo,
     IAttachedDocRepo attachedDocRepo,
     IMarkOperatingConditionsRepo markOperatingConditionsRepo,
     IOptions <AppSettings> appSettings)
 {
     _markRepo                    = markRepo;
     _markApprovalRepo            = markApprovalRepo;
     _employeeRepo                = employeeRepo;
     _docRepo                     = docRepo;
     _markGeneralDataPointRepo    = markGeneralDataPointRepo;
     _markLinkedDocRepo           = markLinkedDocRepo;
     _attachedDocRepo             = attachedDocRepo;
     _markOperatingConditionsRepo = markOperatingConditionsRepo;
     _appSettings                 = appSettings.Value;
 }
 public EstimateTaskDocumentService(
     IMarkRepo markRepo,
     IEmployeeRepo employeeRepo,
     IConstructionRepo constructionRepo,
     IConstructionElementRepo constructionElementRepo,
     IStandardConstructionRepo standardConstructionRepo,
     IMarkOperatingConditionsRepo markOperatingConditionsRepo,
     IEstimateTaskRepo estimateTaskRepo,
     IMarkGeneralDataPointRepo markGeneralDataPointRepo,
     IOptions <AppSettings> appSettings)
 {
     _markRepo                    = markRepo;
     _employeeRepo                = employeeRepo;
     _constructionRepo            = constructionRepo;
     _constructionElementRepo     = constructionElementRepo;
     _standardConstructionRepo    = standardConstructionRepo;
     _markOperatingConditionsRepo = markOperatingConditionsRepo;
     _estimateTaskRepo            = estimateTaskRepo;
     _markGeneralDataPointRepo    = markGeneralDataPointRepo;
     _appSettings                 = appSettings.Value;
 }