Exemplo n.º 1
0
Arquivo: api.cs Projeto: cbmdk/winsebo
 public sensibo.setResult SetStatus(string id, sensibo.SetAcState state)
 {
     sensibo.restclient sclient = new sensibo.restclient(apiKey);
     return(sclient.postpodstatus(id, state));
 }
Exemplo n.º 2
0
Arquivo: api.cs Projeto: cbmdk/winsebo
 public sensibo.acstatus getPodStatus(string id)
 {
     sensibo.restclient sclient = new sensibo.restclient(apiKey);
     return(sclient.getpodstatus(id));
 }
Exemplo n.º 3
0
Arquivo: api.cs Projeto: cbmdk/winsebo
 public sensibo.measurements getPodMeasurments(string id)
 {
     sensibo.restclient sclient = new sensibo.restclient(apiKey);
     return(sclient.getpodmeasurments(id));
 }
Exemplo n.º 4
0
Arquivo: api.cs Projeto: cbmdk/winsebo
 public sensibo.pods getPods()
 {
     sensibo.restclient sclient = new sensibo.restclient(apiKey);
     return(sclient.getpods());
 }