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.
 
 
 
 
 

27 lines
719 B

using Entity.Sugar;
namespace Entity.ViewModels
{
public class View_SAL_Booking : SETB_SAL_Booking
{
//public List<SETB_SAL_Booking_Item> Items { get; set; }
public SETB_CMS_Member Member = new SETB_CMS_Member();
public SETB_CRM_Contact BookingContact = new SETB_CRM_Contact();
public SETB_CRM_Contact PurchaserContact = new SETB_CRM_Contact();
public SETB_CRM_Company PurchaserCompany = new SETB_CRM_Company();
public SETB_CRM_Contact OnSiteContact = new SETB_CRM_Contact();
public SETB_PDT_ONSiteBaseInfo OnSiteService { get; set; }
public SETB_SAL_Payment Payment { get; set; }
public int OrderCount { get; set; }
}
}