public IActionResult Post([FromBody] SchedulingInput schedulingInput)
 {
     _service.AddNewScheduling(schedulingInput);
     return(Ok());
 }