This document was generated from CDN thread
Created by: Jonathan Swartz on 17-01-2012 04:05:34 PM
Good Morning,
I have been working my way through getting comfortable with APIs and methods and have run into one where I just can't seem to resolve what the issue is.
DateTime today_SYSTEM = System.DateTime.Now;
DateTime StartDate_SYSTEM = today_SYSTEM.AddDays(-60);
DateTime EndDate_SYSTEM = today_SYSTEM.AddDays(90);
I am looping through all the TMSSystems to get the ID. And have successfully worked through how to use the GetConferencesforUses method ... but get an invalid argument when I attemp to use this method.
bookingService.GetConferencesForSystems(tmsSystem.SystemId,StartDate_SYSTEM,EndDate_SYSTEM,johntmsmd01.ConferenceStatus.All)
Any Ideas
Subject: RE: Invalid Arguments for GetConferencesForSystems
Replied by: Jonathan Swartz on 17-01-2012 04:26:21 PM
Figured it out .. my first argument is supposed to be an array of IDs ... is there a method that creates this or do I need to create my own?