public ConstructionBoltService(
     IConstructionBoltRepo constructionBoltRepo,
     IMarkRepo markRepo,
     IConstructionRepo constructionRepo,
     IBoltDiameterRepo boltDiameterRepo)
 {
     _repository       = constructionBoltRepo;
     _markRepo         = markRepo;
     _constructionRepo = constructionRepo;
     _boltDiameterRepo = boltDiameterRepo;
 }
示例#2
0
 public ConstructionElementService(
     IConstructionElementRepo constructionElementRepo,
     IMarkRepo markRepo,
     IConstructionRepo constructionRepo,
     IProfileRepo profileRepo,
     ISteelRepo steelRepo)
 {
     _repository       = constructionElementRepo;
     _markRepo         = markRepo;
     _constructionRepo = constructionRepo;
     _profileRepo      = profileRepo;
     _steelRepo        = steelRepo;
 }
示例#3
0
 public ConstructionService(
     IConstructionRepo constructionRepo,
     IMarkRepo markRepo,
     ISpecificationRepo specificationRepo,
     IConstructionTypeRepo constructionTypeRepo,
     IConstructionSubtypeRepo constructionSubtypeRepo,
     IWeldingControlRepo weldingControlRepo)
 {
     _repository              = constructionRepo;
     _markRepo                = markRepo;
     _specificationRepo       = specificationRepo;
     _constructionTypeRepo    = constructionTypeRepo;
     _constructionSubtypeRepo = constructionSubtypeRepo;
     _weldingControlRepo      = weldingControlRepo;
 }
 public ConstructionDocumentService(
     IMarkRepo markRepo,
     IEmployeeRepo employeeRepo,
     IConstructionRepo constructionRepo,
     IStandardConstructionRepo standardConstructionRepo,
     IConstructionElementRepo constructionElementRepo,
     IOptions <AppSettings> appSettings)
 {
     _markRepo                 = markRepo;
     _employeeRepo             = employeeRepo;
     _constructionRepo         = constructionRepo;
     _standardConstructionRepo = standardConstructionRepo;
     _constructionElementRepo  = constructionElementRepo;
     _appSettings              = appSettings.Value;
 }
示例#5
0
 public ProjectRegistrationDocumentService(
     IMarkRepo markRepo,
     IAttachedDocRepo attachedDocRepo,
     IConstructionRepo constructionRepo,
     IStandardConstructionRepo standardConstructionRepo,
     IConstructionElementRepo constructionElementRepo,
     IDocService docService,
     IAdditionalWorkService additionalWorkService)
 {
     _markRepo                 = markRepo;
     _attachedDocRepo          = attachedDocRepo;
     _constructionRepo         = constructionRepo;
     _standardConstructionRepo = standardConstructionRepo;
     _constructionElementRepo  = constructionElementRepo;
     _docService               = docService;
     _additionalWorkService    = additionalWorkService;
 }
 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;
 }