Exemplo n.º 1
0
 public ConstructionElementService(
     IConstructionElementRepo constructionElementRepo,
     IMarkRepo markRepo,
     IConstructionRepo constructionRepo,
     IProfileRepo profileRepo,
     ISteelRepo steelRepo)
 {
     _repository       = constructionElementRepo;
     _markRepo         = markRepo;
     _constructionRepo = constructionRepo;
     _profileRepo      = profileRepo;
     _steelRepo        = steelRepo;
 }
Exemplo n.º 2
0
 public SteelService(ISteelRepo steelRepo)
 {
     _repository = steelRepo;
 }