コード例 #1
0
        public async Task <IActionResult> UpdateTutor([FromBody] TutorUpdateRequestDto tutor)
        {
            try
            {
                await _tutorService.UpdateCurrentTutor(tutor);

                return(NoContent());
            }
            catch (NotFoundException ex)
            {
                return(NotFound(ex.Message));
            }
            catch (Exception ex)
            {
                _logger.LogCritical($"UpdateTutor() Error: {ex}");
                return(StatusCode(500, "Internal Server Error"));
            }
        }