Ejemplo n.º 1
0
 public MarkOperatingConditionsService(
     IMarkOperatingConditionsRepo markOperatingConditionsRepo,
     IMarkRepo markRepo,
     IOperatingAreaRepo operatingAreaRepo,
     IGasGroupRepo gasGroupRepo,
     IEnvAggressivenessRepo envAggressivenessRepo,
     IConstructionMaterialRepo constructionMaterialRepo,
     IPaintworkTypeRepo paintworkTypeRepo,
     IHighTensileBoltsTypeRepo highTensileBoltsTypeRepo)
 {
     _repository               = markOperatingConditionsRepo;
     _markRepo                 = markRepo;
     _operatingAreaRepo        = operatingAreaRepo;
     _gasGroupRepo             = gasGroupRepo;
     _envAggressivenessRepo    = envAggressivenessRepo;
     _constructionMaterialRepo = constructionMaterialRepo;
     _paintworkTypeRepo        = paintworkTypeRepo;
     _highTensileBoltsTypeRepo = highTensileBoltsTypeRepo;
 }
 public HighTensileBoltsTypeService(
     IHighTensileBoltsTypeRepo highTensileBoltsTypeRepo)
 {
     _repository = highTensileBoltsTypeRepo;
 }