Example #1
0
 public async Task <object> Post([FromBody] ApiControllerRequestDto dto) => await _apiControllerRequestManager.Execute(dto);
Example #2
0
 public async Task <object> Request([FromBody] ApiControllerRequestDto dto)
 {
     return(await _apiControllerRequestManager.Execute(dto));
 }