/// <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)); }
/// <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()); }