Beispiel #1
0
 public abstract bool DeleteLanguageFromCountry(Country country);
Beispiel #2
0
 public abstract bool AddLanguageToCountry(Country country, string lang);
Beispiel #3
0
 public abstract bool DeleteCountry(Country country);
Beispiel #4
0
 public abstract bool SaveCountry(Country country);
Beispiel #5
0
 public abstract bool UpdateCountry(Country country);
Beispiel #6
0
 // Null on errors. Takes the first matching language for country, assuming 1 country has 1 language only.
 public abstract string GetLanguageForCountry(Country country);
 public override bool AddLanguageToCountry(Country country, string lang)
 {
     throw new NotImplementedException();
 }
 public override bool UpdateCountry(Country country)
 {
     throw new NotImplementedException();
 }
 public override string GetLanguageForCountry(Country country)
 {
     throw new NotImplementedException();
 }
 public override bool DeleteLanguageFromCountry(Country country)
 {
     throw new NotImplementedException();
 }