예제 #1
0
파일: ShopBLL.cs 프로젝트: chenjian8541/gmp
        /// <summary>
        /// 构造函数
        /// </summary>
        /// <param name="shopDal"></param>

        public ShopBLL(IShopDAL shopDal)
        {
            this._shopDal = shopDal;
        }
예제 #2
0
 public ShopBLL()
     : base(_Type)
 {
     this._Dal = base.CurrentDAL as IShopDAL;
 }
예제 #3
0
 public ShopLogic(IShopDAL shopDAL)
 {
     _shopDAL = shopDAL;
 }
예제 #4
0
 public ShopManager(IShopDAL context)
 {
     _context = context;
 }