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