CloverExamplePOS.POSManualRefund.POSManualRefund C# (CSharp) Méthode

POSManualRefund() public méthode

public POSManualRefund ( string creditID, string orderID, long amount ) : System
creditID string
orderID string
amount long
Résultat System
        public POSManualRefund(string creditID, string orderID, long amount)
        {
            CreditID = creditID;
            OrderID = orderID;
            Amount = amount;
        }
POSManualRefund