Beispiel #1
0
 /// <summary>
 /// Finds a customer by it's ID
 /// </summary>
 /// <param name="ID">The ID to search for</param>
 /// <returns>The customer, if any is found</returns>
 public Customer GetCustomerByID(int ID)
 {
     return(dbCus.GetCustomerByID(ID));
 }