public ActionResult Create(EmployeeViewModel employee)
 {
     if (ModelState.IsValid)
     {
         var intEmployee = ConverTypeHelper.ConvertViewStudentToServiceStudent(employee);
         client.AddEmployee(intEmployee);
         return(RedirectToAction("Index"));
     }
     return(View(employee));
 }