예제 #1
0
 public System.Threading.Tasks.Task CreatePersonAsync(ConsoleApplication1.ServiceReference1.Person person)
 {
     return(base.Channel.CreatePersonAsync(person));
 }
예제 #2
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));
 }
예제 #3
0
 public void CreatePerson(ConsoleApplication1.ServiceReference1.Person person)
 {
     base.Channel.CreatePerson(person);
 }
예제 #4
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));
 }
예제 #5
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));
 }
예제 #6
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));
 }
예제 #7
0
파일: Reference.cs 프로젝트: Zizaveta/Taxi
 public System.Threading.Tasks.Task <ConsoleApplication1.ServiceReference1.Order[]> MyOrdersAsync(ConsoleApplication1.ServiceReference1.Person p)
 {
     return(base.Channel.MyOrdersAsync(p));
 }
예제 #8
0
파일: Reference.cs 프로젝트: Zizaveta/Taxi
 public ConsoleApplication1.ServiceReference1.Order[] MyOrders(ConsoleApplication1.ServiceReference1.Person p)
 {
     return(base.Channel.MyOrders(p));
 }