コード例 #1
0
        public bool EditTown([FromBody] InputTownDto dto)
        {
            var t = _iTownService.Edit(CurrentLanguage, dto);

            if (t != null)
            {
                return((bool)t);
            }
            else
            {
                throw new HttpResponseException(NotFoundMessage(CityAndTown.TownNameNotExist));
            }
        }