Пример #1
0
 public SpecificationService(
     ISpecificationRepo specificationRepo,
     IMarkRepo markRepo)
 {
     _repository = specificationRepo;
     _markRepo   = markRepo;
 }
Пример #2
0
 public StandardConstructionService(
     IStandardConstructionRepo standardConstructionRepo,
     IMarkRepo markRepo,
     ISpecificationRepo specificationRepo)
 {
     _repository        = standardConstructionRepo;
     _markRepo          = markRepo;
     _specificationRepo = specificationRepo;
 }
Пример #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;
 }
Пример #4
0
 public SpecificationDocumentService(
     IMarkRepo markRepo,
     IEmployeeRepo employeeRepo,
     ISpecificationRepo specificationRepo,
     IConstructionRepo constructionRepo,
     IConstructionElementRepo constructionElementRepo,
     IOptions <AppSettings> appSettings)
 {
     _markRepo                = markRepo;
     _employeeRepo            = employeeRepo;
     _specificationRepo       = specificationRepo;
     _constructionRepo        = constructionRepo;
     _constructionElementRepo = constructionElementRepo;
     _appSettings             = appSettings.Value;
 }
 public SpecificationController(ISpecificationRepo repo)
 {
     _repository = repo;
 }
 public SpecificationsController(ISpecificationRepo context)
 {
     _context = context;
 }