public IActionResult Details(int id)
        {
            Work work = _work.Get(id);

            return(View(work));
        }