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.

28 lines
788 B

  1. using Entity.Sugar;
  2. namespace Entity.ViewModels
  3. {
  4. public class View_SAL_Booking : SETB_SAL_Booking
  5. {
  6. //public List<SETB_SAL_Booking_Item> Items { get; set; }
  7. public SETB_CMS_Member Member = new SETB_CMS_Member();
  8. public SETB_CRM_Contact BookingContact = new SETB_CRM_Contact();
  9. public SETB_CRM_Contact PurchaserContact = new SETB_CRM_Contact();
  10. public SETB_CRM_Company PurchaserCompany = new SETB_CRM_Company();
  11. public SETB_CRM_Contact OnSiteContact = new SETB_CRM_Contact();
  12. public View_PDT_ONSiteBaseInfo OnSiteService { get; set; }
  13. public SETB_SCM_Supplier Provider = new SETB_SCM_Supplier();
  14. public SETB_SAL_Payment Payment { get; set; }
  15. public int OrderCount { get; set; }
  16. }
  17. }