Example #1
0
 public System.Threading.Tasks.Task CreatePersonAsync(ConsoleApplication1.ServiceReference1.Person person)
 {
     return(base.Channel.CreatePersonAsync(person));
 }
Example #2
0
 public System.Threading.Tasks.Task <string> WriteEmailAsync(ConsoleApplication1.ServiceReference1.Person person, ConsoleApplication1.ServiceReference1.Taxi taxi, string Thema, string Message)
 {
     return(base.Channel.WriteEmailAsync(person, taxi, Thema, Message));
 }
Example #3
0
 public void CreatePerson(ConsoleApplication1.ServiceReference1.Person person)
 {
     base.Channel.CreatePerson(person);
 }
Example #4
0
 public string WriteEmail(ConsoleApplication1.ServiceReference1.Person person, ConsoleApplication1.ServiceReference1.Taxi taxi, string Thema, string Message)
 {
     return(base.Channel.WriteEmail(person, taxi, Thema, Message));
 }
Example #5
0
 public System.Threading.Tasks.Task <string> MakeOrderAsync(ConsoleApplication1.ServiceReference1.Person person, ConsoleApplication1.ServiceReference1.Taxi t, string from, string to, string comment)
 {
     return(base.Channel.MakeOrderAsync(person, t, from, to, comment));
 }
Example #6
0
 public string MakeOrder(ConsoleApplication1.ServiceReference1.Person person, ConsoleApplication1.ServiceReference1.Taxi t, string from, string to, string comment)
 {
     return(base.Channel.MakeOrder(person, t, from, to, comment));
 }
Example #7
0
 public System.Threading.Tasks.Task <ConsoleApplication1.ServiceReference1.Order[]> MyOrdersAsync(ConsoleApplication1.ServiceReference1.Person p)
 {
     return(base.Channel.MyOrdersAsync(p));
 }
Example #8
0
 public ConsoleApplication1.ServiceReference1.Order[] MyOrders(ConsoleApplication1.ServiceReference1.Person p)
 {
     return(base.Channel.MyOrders(p));
 }