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.

56 lines
1.6 KiB

  1. 
  2. using Entity.Sugar;
  3. using System.Collections.Generic;
  4. namespace Entity.ViewModels
  5. {
  6. public class View_SAL_BookingOnline : SETB_SAL_BookingOnline
  7. {
  8. public string MemberName { get; set; }
  9. public string MemberEmail { get; set; }
  10. public string SupplierID { get; set; }
  11. public string SupplierName { get; set; }
  12. public string ServiceName { get; set; }
  13. public string ServicePictrue { get; set; }
  14. public string BookingDateFormat { get; set; }
  15. public string ServiceDateSFormat { get; set; }
  16. public string ServiceDateEFormat { get; set; }
  17. public View_PDT_ONSiteBaseInfo OnSiteService { get; set; }
  18. public SETB_SAL_Payment Payment = new SETB_SAL_Payment();
  19. public SETB_CMS_Member Member = new SETB_CMS_Member();
  20. public string ExhibitionName { get; set; }
  21. public string CurrencyName { get; set; }
  22. public string PaymentRemittance { get; set; }
  23. //工作確認天數
  24. public string ConfirmDays { get; set; }
  25. public List<View_SAL_Subscriber> lstSubscriber { get; set; }
  26. public List<View_SAL_InvoiceIndividual> lstInvoiceIndividual { get; set; }
  27. public List<View_SAL_InvoiceCompany> lstInvoiceCompany { get; set; }
  28. }
  29. public class View_SAL_Subscriber : SETB_SAL_Subscriber
  30. {
  31. public string CountryName { get; set; }
  32. }
  33. public class View_SAL_InvoiceIndividual : SETB_SAL_InvoiceIndividual
  34. {
  35. public string CountryName { get; set; }
  36. }
  37. public class View_SAL_InvoiceCompany : SETB_SAL_InvoiceCompany
  38. {
  39. public string CountryName { get; set; }
  40. }
  41. }