public static Employee ToEntity(this EmployeeModel model, Employee destination)
 {
     return(model.MapTo(destination));
 }
 public static Employee ToEntity(this EmployeeModel model)
 {
     return(model.MapTo <EmployeeModel, Employee>());
 }