コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ProductCategoryServiceController"/> class.
 /// </summary>
 /// <param name="productCategoryBusinessService">The productCategoryBusinessService<see cref="IProductCategoryBusinessService"/></param>
 public ProductCategoryServiceController(IProductCategoryBusinessService productCategoryBusinessService)
 {
     _productCategoryBusinessService = productCategoryBusinessService;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HomeController"/> class.
 /// </summary>
 /// <param name="productBusinessService">The productBusinessService<see cref="IProductBusinessService"/></param>
 /// <param name="productCategoryBusinessService">The productCategoryBusinessService<see cref="IProductCategoryBusinessService"/></param>
 public HomeController(IProductBusinessService productBusinessService, IProductCategoryBusinessService productCategoryBusinessService)
 {
     this._productBusinessService         = productBusinessService;
     this._productCategoryBusinessService = productCategoryBusinessService;
 }