示例#1
0
 public async Task <long> Post([FromBody] Cluster cluster)
 {
     return(await _clusterService.AddCluster(cluster));
 }
示例#2
0
 public async Task <long> Post([FromBody] Cluster cluster, Guid userID, string userName)
 {
     return(await _clusterService.AddCluster(cluster, userID, userName));
 }