Exemple #1
0
    public static SqlInt32 Shop_DeleteProductVariant(string StoreName, string APIKey, string Password, long ProductID, long VariantID)
    {
        ShopifyClient sp = new ShopifyClient(StoreName, APIKey, Password);
        int success = sp.DeleteProductVariant(ProductID, VariantID);

        if (!String.IsNullOrEmpty(sp.ErrMsg))
            RaiseErr(sp.ErrMsg);

        return success;
    }