public ControlResponse(Header headerObject, DirectiveEndpoint endpoint)
 {
     context = new AlexaControlResponseContext();
     Event   = new AlexaEventBody(headerObject, endpoint);
 }
 public ControlResponse(object[] args)
 {
     context = new AlexaControlResponseContext();
     Event   = new AlexaEventBody(args[0] as Header, args[1] as DirectiveEndpoint);
 }