コード例 #1
0
 public HelperController()
 {
     _brandService=new BrandService();
     _configService = new ConfigService();
     _productService=new ProductService();
     _colorService=new ColorService();
 }
コード例 #2
0
ファイル: AdminController.cs プロジェクト: haima24/ShopOnline
 public AdminController()
 {
     _colorService = new ColorService();
     _categoryService = new CategoryService();
     _productService = new ProductService();
     _configService = new ConfigService();
     _orderService = new OrderService();
     _userService = new UserService();
     _brandService = new BrandService();
 }