温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:MyShop网络商城源码(mvc开发)
当前文件路径:MyShop/BLL/ProductKinds.cs

1using System.Data; 2
3
4
using MyShop.DALFactory; 5
using MyShop.IDAL; 6
using MyShop.Model; 7
8
namespace MyShop.BLL 9
{ 10
public class ProductKinds 11
{ 12
private IProductKinds dal = DataAccess.CreateProductKinds(); 13
private int _id; 14
public ProductKinds() 15
{ 16
} 17
18
public ProductKinds(int id) 19
{ 20
this._id = id; 21
22
} 23
24
ICategory member 99
100
common 162
163
以下过程要用ProductKinds product = new ProductKinds(id)实例化后才能进行调用 208
209
后台管理 234
235
236
} 237
} 238





}
}