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 ConstructionTypeService( IConstructionTypeRepo constructionTypeRepo) { _repository = constructionTypeRepo; }