コード例 #1
0
 /// <summary>
 /// The static Fetch method interacts with the DataLayer
 /// in order to retrieve a object which corresponds to the ID key received.
 /// </summary>
 /// <param name="id">The ID key of the object</param>
 /// <returns>The object found matching the key.</returns>
 public static Transaction Fetch(int id)
 {
     return(DataTransaction.Fetch(id));
 }