예제 #1
0
        public int EnableShopCar(string Openid, string ClassId, int status)
        {
            var da = new ShopCarDA();

            return(da.EnableShopCar(Openid, ClassId, status));
        }
예제 #2
0
        public int EnableShopCar(string shopCarId, int status)
        {
            var da = new ShopCarDA();

            return(da.EnableShopCar(shopCarId, status));
        }
예제 #3
0
        public ShopCarEntity GetMyShopByopenIdAndclassId(string openId, string classId)
        {
            var da = new ShopCarDA();

            return(da.GetMyShopByopenIdAndclassId(openId, classId));
        }
예제 #4
0
        public int AddShopCar(ShopCarEntity car, string loginName)
        {
            var da = new ShopCarDA();

            return(da.AddShopCar(car, loginName));
        }
예제 #5
0
        public List <VMClassCar> GetMyShopByopenId(string openid)
        {
            var da = new ShopCarDA();

            return(da.GetMyShopByopenId(openid));
        }