1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
-
- namespace ERD
- {
- using System;
- using System.Collections.Generic;
-
- public partial class TblPromotion
- {
- public System.Guid Oid { get; set; }
- public Nullable<int> Resort { get; set; }
- public Nullable<int> Season { get; set; }
- public Nullable<int> SleeperSize { get; set; }
- public Nullable<int> UnitNumber { get; set; }
- public Nullable<int> WeekType { get; set; }
- public Nullable<System.DateTime> FromDate { get; set; }
- public Nullable<System.DateTime> ToDate { get; set; }
- public Nullable<decimal> Price1 { get; set; }
- public Nullable<decimal> Price2 { get; set; }
- public Nullable<decimal> DiscountPercentage { get; set; }
- public Nullable<int> OptimisticLockField { get; set; }
- public Nullable<int> GCRecord { get; set; }
- public Nullable<decimal> RebatePercentage { get; set; }
- public Nullable<bool> UsePrice1 { get; set; }
- public Nullable<bool> UsePrice2 { get; set; }
- public Nullable<bool> UseRebate { get; set; }
- public Nullable<int> WeekModule { get; set; }
- public Nullable<int> PromotionType { get; set; }
-
- public virtual TblPromotionType TblPromotionType { get; set; }
- public virtual TblResort TblResort { get; set; }
- public virtual TblWeekModule TblWeekModule { get; set; }
- }
- }
|