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