public ActionResult Create([Bind(Include = "Name")] ProjectViewModel projectViewModel)
        {
            if (!ModelState.IsValid)
            {
                return(View(projectViewModel));
            }

            _projectLogic.CreateProject(new ProjectModel {
                Name = projectViewModel.Name
            });
            return(RedirectToAction("Index"));
        }