コード例 #1
0
ファイル: Reference.cs プロジェクト: Zizaveta/Taxi
 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));
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: Zizaveta/Taxi
 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));
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: Zizaveta/Taxi
 public string WriteEmail(ConsoleApplication1.ServiceReference1.Person person, ConsoleApplication1.ServiceReference1.Taxi taxi, string Thema, string Message)
 {
     return(base.Channel.WriteEmail(person, taxi, Thema, Message));
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: Zizaveta/Taxi
 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));
 }