public ActionResult CreateWork(Work work)
        {
            WorkRepository.AddWork(work);

            return(Ok());
        }