/// <summary>
 /// Get list of all customers in db.
 /// </summary>
 /// <returns>A list with all customers in db (at the time of method call).</returns>
 public List <Customer> GetAllCustomers()
 {
     return(api.GetCustomers());
 }