public IActionResult GetAll()
 {
     return(Ok(ViewAppointmentAdapter.AppointmentListToViewAppointmenDtoList(regularAppointmentService.GetAll())));
 }
예제 #2
0
 public List <DoctorAppointment> GetAll()
 {
     return(regularAppointmentService.GetAll());
 }