コード例 #1
0
 /// <summary>
 /// The List method gets the list of objects from the Data Layer.
 /// </summary>
 /// <returns>List of Transaction objects</returns>
 public static List <Transaction> List(int customerID)
 {
     return(DataTransaction.List(customerID));
 }
コード例 #2
0
 /// <summary>
 /// The List method gets the list of objects from the Data Layer.
 /// </summary>
 /// <returns>List of Transaction objects</returns>
 public static List <Transaction> List()
 {
     return(DataTransaction.List());
 }