コード例 #1
0
ファイル: Event.cs プロジェクト: s-leonard/Tarts
 public virtual ReturnValue UpdateTicketInfo(Ticket ticket, string name, decimal price, decimal bookingFee, int allocation, bool enabled)
 {
     var retVal = ticket.UpdateTicketInfo(name, price, bookingFee, allocation, enabled);
     ReCalculateTicketTotals();
     return retVal;
 }