public ActionResult GetItemDetail(int id)
        {
            TeaShopVM tea = shop.GetItemById(id);

            return(View(tea));
        }