コード例 #1
0
ファイル: RateController.cs プロジェクト: lukavasic4/projekat
 public IActionResult Post(int id, [FromBody] RateDto dto, [FromServices] IRatePostCommand command)
 {
     _executor.ExecuteCommandRate(command, dto, id);
     return(NoContent());
 }