예제 #1
0
 public abstract bool DeleteLanguageFromCountry(Country country);
예제 #2
0
 public abstract bool AddLanguageToCountry(Country country, string lang);
예제 #3
0
 public abstract bool DeleteCountry(Country country);
예제 #4
0
 public abstract bool SaveCountry(Country country);
예제 #5
0
 public abstract bool UpdateCountry(Country country);
예제 #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);
예제 #7
0
 public override bool AddLanguageToCountry(Country country, string lang)
 {
     throw new NotImplementedException();
 }
예제 #8
0
 public override bool UpdateCountry(Country country)
 {
     throw new NotImplementedException();
 }
예제 #9
0
 public override string GetLanguageForCountry(Country country)
 {
     throw new NotImplementedException();
 }
예제 #10
0
 public override bool DeleteLanguageFromCountry(Country country)
 {
     throw new NotImplementedException();
 }