public async Task <IActionResult> Put(int characterId, [FromBody] Attributes attributes)
        {
            await _serviceAsync.UpdateAsync(characterId, attributes).ConfigureAwait(false);

            return(NoContent());
        }
Example #2
0
        public async Task <IActionResult> Put(int characterId, [FromBody] CharacterDetail detail)
        {
            await _serviceAsync.UpdateAsync(characterId, detail).ConfigureAwait(false);

            return(NoContent());
        }