public IActionResult All()
        {
            var appointmenDtos = _service.All();

            return(Ok(appointmenDtos));
        }