public ActionResult Edit(int?id)
        {
            AuthorModel auth = db.getAuthodById(id);

            return(View(auth));
        }