public ProfilePictureModel(Entities.Country country) { CountryId = country.CountryId; Name = country.Name; Code = country.Code; }
public CountryModel(Entities.Country country) { CountryId = country.CountryId; Name = country.Name; Code = country.Code; }