コード例 #1
0
ファイル: ShopController.cs プロジェクト: senqtus/Warehouse
 public ShopController(IShopOperations shopOperations)
 {
     this.shopOperations = shopOperations;
 }
コード例 #2
0
ファイル: HomeController.cs プロジェクト: senqtus/Warehouse
 public HomeController(IShopOperations shopOperations, IHostingEnvironment hostingEnvironment)
 {
     this.shopOperations     = shopOperations;
     this.hostingEnvironment = hostingEnvironment;
 }