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