public async Task <IActionResult> CreateDoctors([FromBody] Doctor doctors)
 {
     return(Ok(await _context.CreateDoctorsAsync(doctors)));
 }