Exemple #1
0
        public async Task <ActionResult> AddRoom([FromRoute] AppointmentAddRoomDto addRoomDto)
        {
            await _appointmentService.AddRoomAsync(addRoomDto);

            return(NoContent());
        }