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