public IActionResult CreateEmployee(EmployeeCreateCommand command)
        {
            //var fname = Request.Form["fName"];
            employeeCommandFacade.CreateEmployee(command);

            return(RedirectToAction("SignUp"));
        }
 public void CreateEmployee(EmployeeCreateCommand command)
 {
     commandFacade.CreateEmployee(command);
 }