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.

44 lines
1.4 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Entity.ShowEasyDtos
  7. {
  8. public class BookingDTO
  9. {
  10. public string BookingID { get; set; }
  11. public string BookingNo { get; set; }
  12. public DateTime? BookingDate { get; set; }
  13. public string LanguageID { get; set; }
  14. public string BookingDetail { get; set; }
  15. public OnSiteServiceDTO OnSiteService = new OnSiteServiceDTO();
  16. public string NoticeDetail { get; set; }
  17. public string OtherDetail { get; set; }
  18. public string InvoiceID { get; set; }
  19. public string MemberID { get; set; }
  20. public string Account { get; set; }
  21. public string PurchaserType { get; set; }
  22. public ContactDTO PurchaserContact = new ContactDTO();
  23. public CompanyDTO PurchaserCompany = new CompanyDTO();
  24. public ContactDTO Contact = new ContactDTO();
  25. public PaymentDTO Payment = new PaymentDTO();
  26. public string ShippingID { get; set; }
  27. public string BookingStatus { get; set; }
  28. public int Quantity { get; set; }
  29. public string Currency { get; set; }
  30. //public CurrencyDTO Currency = new CurrencyDTO();
  31. public string TaxRateID { get; set; }
  32. public string TotalPrice { get; set; }
  33. public string CancellationPolicy { get; set; }
  34. public string Memo { get; set; }
  35. }
  36. }