예제 #1
0
 public MeetingReport(System.Data.DataSet report, ISymphonySyncApi syncApi)
 {
     if (syncApi == null || report == null)
     {
         throw new NullReferenceException();
     }
     this._syncApi             = syncApi;
     this._report              = report;
     this._meetings            = TryLoadMeetings();
     this.EnterpriseSystemName = "SabreVM";
     this.IanaTimezoneName     = "Europe/London";
 }
예제 #2
0
 public SvmAgent(ISymphonyRepository repository)
 {
     this._api = new SymphonySyncApi(repository);
 }