public static ICollection<Product> GetAllProducts()
 {
     var productsDAO = new DefaultProductsDAO();
     return productsDAO.GetAll();
 }