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.
57 lines
1.6 KiB
57 lines
1.6 KiB
|
|
|
|
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<View_SAL_Subscriber> lstSubscriber { get; set; }
|
|
public List<View_SAL_InvoiceIndividual> lstInvoiceIndividual { get; set; }
|
|
public List<View_SAL_InvoiceCompany> 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; }
|
|
}
|
|
|
|
|
|
}
|