Example #1
0
 public System.Threading.Tasks.Task <bool> DeleteCityAsync(MODEL.MyService.City city)
 {
     return(base.Channel.DeleteCityAsync(city));
 }
Example #2
0
 public bool DeleteCity(MODEL.MyService.City city)
 {
     return(base.Channel.DeleteCity(city));
 }
Example #3
0
 public bool ModifyCity(MODEL.MyService.City oldCity, MODEL.MyService.City newCity)
 {
     return(base.Channel.ModifyCity(oldCity, newCity));
 }
Example #4
0
 public System.Threading.Tasks.Task <bool> ModifyCityAsync(MODEL.MyService.City oldCity, MODEL.MyService.City newCity)
 {
     return(base.Channel.ModifyCityAsync(oldCity, newCity));
 }
Example #5
0
 public bool AddCity(MODEL.MyService.City city)
 {
     return(base.Channel.AddCity(city));
 }