public ActionResult Find(ProjectSearchForm searchForm)
 {
     return PartialView("_ProjectList", Query(new GetProjectListQuery(searchForm)));
 }
 /// <summary>
 /// constructor
 /// </summary>
 public ProjectSearchViewModel()
 {
     SearchForm = new ProjectSearchForm();
     Result = new List<ProjectSearchResultItem>();
 }