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