public EmailController(INotificationOrchestrator orchestrator)
 {
     if (orchestrator == null)
     {
         throw new ArgumentNullException(nameof(orchestrator));
     }
     _orchestrator = orchestrator;
 }