示例#1
0
 // Return the JSON representation of the list of Receipts associated with the given Account
 public string getReceiptsFromAccount(long accID)
 {
     return(RService.getJSON(RService.getReceiptsFromAccount(accID)));
 }
示例#2
0
        static void testReceiptJSON(Receipt r)
        {
            ReceiptService rs = new ReceiptService();

            Console.WriteLine("\n" + rs.getJSON(r));
        }