public ActionResult Delete(int Id)
        {
            var model = db.Get(Id);

            return(View(model));
        }