コード例 #1
0
        public async Task <IActionResult> Post([FromBody] ClientDto dto)
        {
            _logger.LogDebug("Start handle request [clients/ | post]");
            await _clientPlugin.UpdateAsync(dto.Map());

            _logger.LogDebug("Finish handle request with OK status [clients/ | post]");
            return(Ok());
        }