Exemplo n.º 1
0
 public async Task <bool> Put([FromBody] Cluster cluster)
 {
     return(await _clusterService.UpdateCluster(cluster));
 }
Exemplo n.º 2
0
 public async Task <bool> Put([FromBody] Cluster cluster, Guid userID, string userName)
 {
     return(await _clusterService.UpdateCluster(cluster, userID, userName));
 }