// GET: Store
        public ActionResult Index()
        {
            var Model = store.GetAllProduct();

            return(View(Model));
        }