public static IEnumerable <ViewProductModel> GetFiveProduct()
        {
            var rand = new Random();
            IEnumerable <ViewProductModel> p = ProductHandler.GetAllProduct().OrderBy(x => rand.Next()).Take(5);

            return(p);
        }
        public static List <ViewProductModel> GetAllProducts()
        {
            List <ViewProductModel> p = ProductHandler.GetAllProduct();

            return(p);
        }