Exemple #1
0
        public void DeletePointShopItem(int point_shop_item_id)
        {
            Point_Shop_Item psi = new Point_Shop_Item();

            psi.DeletePointShopItem(point_shop_item_id);
        }
Exemple #2
0
        //Point Shop
        public Point_Shop_Item SelectById(string Point_Shop_Item_Id)
        {
            Point_Shop_Item items = new Point_Shop_Item();

            return(items.SelectById(Point_Shop_Item_Id));
        }
Exemple #3
0
        public List <Point_Shop_Item> SelectAll()
        {
            Point_Shop_Item items = new Point_Shop_Item();

            return(items.SelectAll());
        }
Exemple #4
0
        public int CreatePointShopItem(string name, string partner, string partner_email, string description, int price, string image, string type)
        {
            Point_Shop_Item item = new Point_Shop_Item(name, partner, partner_email, description, price, image, type);

            return(item.Insert());
        }