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