You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace Entity.ShowEasyDtos { public class BookingDTO { public string BookingID { get; set; } public string BookingNo { get; set; } public DateTime? BookingDate { get; set; } public string LanguageID { get; set; }
public List<string> BookingDetail = new List<string>();
public OnSiteServiceDTO OnSiteService = new OnSiteServiceDTO(); public string NoticeDetail { get; set; } public List<string> OtherDetail = new List<string>(); public string InvoiceID { get; set; } public string MemberID { get; set; } public string Account { get; set; }
public MemberDTO Member = new MemberDTO();
public string PurchaserType { get; set; }
public ContactDTO PurchaserContact = new ContactDTO();
public CompanyDTO PurchaserCompany = new CompanyDTO();
public ContactDTO Contact = new ContactDTO();
public PaymentDTO Payment = new PaymentDTO(); public string PaymentType { get; set; } public string PaymentStatus { get; set; } public string ShippingID { get; set; } public string BookingStatus { get; set; } public int Quantity { get; set; } //public string Currency { get; set; }
public CurrencyDTO Currency = new CurrencyDTO(); public string TaxRateID { get; set; } public string TotalPrice { get; set; } public string CancellationPolicy { get; set; } public string Memo { get; set; }
} }
|