Beispiel #1
0
 public Friendships.Show.Result Show()
 {
     var cm = new Friendships.Show.Command();
     return this.Show(cm);
 }
Beispiel #2
0
 public Friendships.Show.Result Show(String source_id, String source_screen_name, String target_id, String target_screen_name)
 {
     var cm = new Friendships.Show.Command();
     cm.source_id = source_id;
     cm.source_screen_name = source_screen_name;
     cm.target_id = target_id;
     cm.target_screen_name = target_screen_name;
     return this.Show(cm);
 }
Beispiel #3
0
 public Friendships.Show.Result[] Show(Friendships.Show.Command command)
 {
     return(_ApiEndpoints._Client.GetResult <Friendships.Show.Command, Friendships.Show.Result[]>(command));
 }