예제 #1
0
 public bool AssociateCustomerTickets(int userid, int[] ticketIDs, int customerId)
 {
     try
     {
         return(virtualDinerwareClient.AssociateCustomerTickets(userid, ticketIDs, customerId));
     }
     catch (Exception ex)
     {
         logger.WriteLogError("**** Dinerware VirtualClient FAILURE: AssociateCustomerTickets Exception Error= " + ex.Message);
         if (ex.InnerException != null)
         {
             logger.WriteLogError("**** InnerException  = " + ex.InnerException.Message);
         }
         throw ex;
     }
 }
 /// <summary>
 /// AssociateCustomerTickets
 /// </summary>
 /// <param name="userid"></param>
 /// <param name="ticketIDs"></param>
 /// <param name="customerId"></param>
 /// <returns></returns>
 public bool AssociateCustomerTickets(int userid, int[] ticketIDs, int customerId)
 {
     return(_virtualDinerwareClient.AssociateCustomerTickets(userid, ticketIDs, customerId));
 }