Ejemplo n.º 1
0
 public Trends.Closest.Result[] Closest(String lat, String @long)
 {
     var cm = new Trends.Closest.Command();
     cm.lat = lat;
     cm.@long = @long;
     return this.Closest(cm);
 }
Ejemplo n.º 2
0
 public Trends.Closest.Result[] Closest(Trends.Closest.Command command)
 {
     return(_ApiEndpoints._Client.GetResult <Trends.Closest.Command, Trends.Closest.Result[]>(command));
 }