Пример #1
0
 public EstimateTaskService(
     IEstimateTaskRepo estimateTaskRepo,
     IMarkRepo markRepo,
     IEmployeeRepo employeeRepo)
 {
     _repository   = estimateTaskRepo;
     _markRepo     = markRepo;
     _employeeRepo = employeeRepo;
 }
Пример #2
0
 public MarkService(
     IMarkRepo markRepo,
     ISubnodeRepo subnodeRepo,
     IDepartmentRepo departmentRepo,
     IEmployeeRepo employeeRepo,
     IEstimateTaskRepo estimateTaskRepo,
     ISpecificationService specificationService,
     IMarkGeneralDataPointService markGeneralDataPointService)
 {
     _repository                  = markRepo;
     _subnodeRepo                 = subnodeRepo;
     _departmentRepo              = departmentRepo;
     _employeeRepo                = employeeRepo;
     _estimateTaskRepo            = estimateTaskRepo;
     _specificationService        = specificationService;
     _markGeneralDataPointService = markGeneralDataPointService;
 }
 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;
 }