CloverExamplePOS.POSManualRefund.POSManualRefund C# (CSharp) Method

POSManualRefund() public method

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