private Eikon()
 {
     Profile         = new Profile();
     JSONRequest     = new JSONRequest(Profile);
     DataGrid        = new DataGrid(Profile, JSONRequest);
     TimeSeries      = new TimeSeries(Profile, JSONRequest);
     NewsHeadlines   = new NewsHeadlines(Profile, JSONRequest);
     NewsStory       = new NewsStory(Profile, JSONRequest);
     SymbologySearch = new SymbologySearch(Profile, JSONRequest);
     Logger          = Profile.CreateLogger <Eikon>();
 }
 public string GetNewsStory(string storyId)
 {
     //throw new NotImplementedException();
     return(NewsStory.GetNewsStory(storyId));
 }