/// <summary>
 /// Gets an IEnumerable of all products in the database
 /// </summary>
 /// <returns>IEnumerable<Product> listOfProducts</returns>
 public IEnumerable <Product> GetAllComponents()
 {
     return(myProxy.GetAll());
 }