コード例 #1
0
 public CarServiceCore.Context.Comanda[] GetOrdersForCar(CarServiceCore.Context.Automobil auto)
 {
     return(base.Channel.GetOrdersForCar(auto));
 }
コード例 #2
0
 public System.Threading.Tasks.Task <CarServiceCore.Context.Comanda[]> GetOrdersForCarAsync(CarServiceCore.Context.Automobil auto)
 {
     return(base.Channel.GetOrdersForCarAsync(auto));
 }
コード例 #3
0
 public System.Threading.Tasks.Task UpdateAutoAsync(CarServiceCore.Context.Automobil auto)
 {
     return(base.Channel.UpdateAutoAsync(auto));
 }
コード例 #4
0
 public void UpdateAuto(CarServiceCore.Context.Automobil auto)
 {
     base.Channel.UpdateAuto(auto);
 }
コード例 #5
0
 public void AddAuto(CarServiceCore.Context.Automobil auto)
 {
     base.Channel.AddAuto(auto);
 }
コード例 #6
0
 public System.Threading.Tasks.Task <bool> AutoExistsAsync(CarServiceCore.Context.Automobil auto)
 {
     return(base.Channel.AutoExistsAsync(auto));
 }
コード例 #7
0
 public bool AutoExists(CarServiceCore.Context.Automobil auto)
 {
     return(base.Channel.AutoExists(auto));
 }