public ActionResult ViewCategory(string name, string id)
 {
     StoreGateway sg = new StoreGateway();
     DisplayCategory item = sg.GetCategoryAndItems(Convert.ToInt64(id));
     return View(item);
 }