Exemplo n.º 1
0
 public async Task <bool> UpdateCluster(Model.Cluster cluster)
 {
     return(await _apiClient.ClusterSdk.UpdateCluster(cluster));
 }
Exemplo n.º 2
0
 public UpdateClusterCommand(Model.Cluster cluster, Guid userID, string userName)
 {
     _cluster  = cluster;
     _userID   = userID;
     _userName = userName;
 }
Exemplo n.º 3
0
 public async Task <long> AddCluster(Model.Cluster cluster)
 {
     return(await _apiClient.ClusterSdk.AddCluster(cluster));
 }