Beispiel #1
0
 protected void ASPxGridView1_RowInserted(object sender, DevExpress.Web.Data.ASPxDataInsertedEventArgs e)
 {
     XPQuery <BookingEntry> BookingEntryQuery = session.Query <BookingEntry>();
     BookingEntry           BkE       = session.GetObjectByKey <BookingEntry>(Guid.Parse(Session["BookingEntryId"].ToString()));
     AccountingBO           accountBO = new AccountingBO();
     Guid trnId = accountBO.CreateBookingEntryTransaction(session, BkE.BookingEntryId);
 }
Beispiel #2
0
		public RatesClient GetAsync (BookingEntry getInfo)
		{

			return InvokeStrategy<RatesClient> (() => {				
				if (PostObjectAsync (UrlPaths.Rates, getInfo.GetTripDetail ()).HasErrors)
					return;
			});
		}