コード例 #1
0
 public ConstructionElementService(
     IConstructionElementRepo constructionElementRepo,
     IMarkRepo markRepo,
     IConstructionRepo constructionRepo,
     IProfileRepo profileRepo,
     ISteelRepo steelRepo)
 {
     _repository       = constructionElementRepo;
     _markRepo         = markRepo;
     _constructionRepo = constructionRepo;
     _profileRepo      = profileRepo;
     _steelRepo        = steelRepo;
 }
コード例 #2
0
 public SteelService(ISteelRepo steelRepo)
 {
     _repository = steelRepo;
 }