예제 #1
0
        /// <summary>
        /// A basic add example with the minimal required fields
        /// </summary>
        public BoothsModel Add(string orgCode, int eventId, int functionId, string assignCode)
        {
            var myBooth = new BoothsModel {
                OrganizationCode = orgCode,
                Event            = eventId,
                Function         = functionId,
                Booth            = assignCode
            };

            return(APIUtil.AddBooth(USISDKClient, myBooth));
        }
예제 #2
0
 /// <summary>
 /// A basic add example with a constructed Booth Model object
 /// </summary>
 public BoothsModel Add(BoothsModel myBooth)
 {
     return(APIUtil.AddBooth(USISDKClient, myBooth));
 }