using Entity.Sugar; using System.Collections.Generic; namespace Entity.ViewModels { public class View_SAL_BookingOnline : SETB_SAL_BookingOnline { public string MemberName { get; set; } public string MemberEmail { get; set; } public string SupplierID { get; set; } public string SupplierName { get; set; } public string ServiceName { get; set; } public string ServicePictrue { get; set; } public string BookingDateFormat { get; set; } public string ServiceDateSFormat { get; set; } public string ServiceDateEFormat { get; set; } public View_PDT_ONSiteBaseInfo OnSiteService { get; set; } public SETB_SAL_Payment Payment = new SETB_SAL_Payment(); public SETB_CMS_Member Member = new SETB_CMS_Member(); public string ExhibitionName { get; set; } public string CurrencyName { get; set; } public string PaymentRemittance { get; set; } //工作確認天數 public string ConfirmDays { get; set; } public List lstSubscriber { get; set; } public List lstInvoiceIndividual { get; set; } public List lstInvoiceCompany { get; set; } } public class View_SAL_Subscriber : SETB_SAL_Subscriber { public string CountryName { get; set; } } public class View_SAL_InvoiceIndividual : SETB_SAL_InvoiceIndividual { public string CountryName { get; set; } } public class View_SAL_InvoiceCompany : SETB_SAL_InvoiceCompany { public string CountryName { get; set; } } }