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

1using System; 2
using System.Collections.Generic; 3
4
using System.Data; 5
6
7
using MyShop.DALFactory; 8
using MyShop.IDAL; 9
using MyShop.Model; 10
namespace MyShop.BLL 11
{ 12
public class DeliverItem 13
{ 14
15
private IDeliverItem dal = DataAccess.CreateDeliverItem(); 16
private ConfigInfo configInfo = new ConfigInfo(); 17
private string tableName = "Ljh_DeliverItem"; 18
public DeliverItem() 19
{ 20
Config config = new Config(); 21
configInfo = config.GetModel(); 22
23
if (!string.IsNullOrEmpty(configInfo.TablePrefix.Trim())) 24
tableName = configInfo.TablePrefix + "DeliverItem"; 25
} 26
27
IDeliverItem 91
92
common 146
147
后台管理 180
181
182
} 183
} 184





}
}