Exemple #1
0
    public static void Shop_CompleteFulfillment(string StoreName, string APIKey, string Password, long OrderID, long FulfillmentID, out SqlString Status)
    {
        ShopifyClient sp = new ShopifyClient(StoreName, APIKey, Password);
        Status = sp.CompleteFulfillment(OrderID, FulfillmentID);

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