예제 #1
0
        public async Task <IActionResult> AddOwnerAsync([FromBody] OwnerInputDto ownerInputDto)
        {
            var id = await _ownerService.AddOwnerAsync(ownerInputDto);

            return(Ok(id));
        }