public ActionResult Create(ProjectViewModel model)
        {
            if (ModelState.IsValid)
            {
                model.Create(_db);
                return Json(new { Success = true } );
            }

            return Json(new { Success = false });
        }