Esempio n. 1
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 ConstructionSubtypeService(
     IConstructionSubtypeRepo constructionSubtypeRepo)
 {
     _repository = constructionSubtypeRepo;
 }