public async Task <IActionResult> AddDirector(Director newDirector)
 {
     return(Ok(await _directorService.AddDirectorService(newDirector)));
 }