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