public static CountrySpecificCustomerRule Create(Country.Country country)
 {
     return((from c in GetAllCountryRules() where c.Country.CountryCode == country.CountryCode select c)
            .FirstOrDefault());
 }
Exemplo n.º 2
0
 public Author(string name, Country.Country nationality)
 {
     Name        = name;
     Nationality = nationality;
 }
Exemplo n.º 3
0
 public CountrySpecificCustomer(Country.Country country)
 {
     _country = country;
 }