diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs index d3e90202..a9281128 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -414982,6 +414982,8 @@ namespace Model private string _Status; + private System.Nullable _ADate; + public View_TransferDetail() { } @@ -415097,6 +415099,22 @@ namespace Model } } } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Name="aDate", Storage="_ADate", DbType="DateTime")] + public System.Nullable ADate + { + get + { + return this._ADate; + } + set + { + if ((this._ADate != value)) + { + this._ADate = value; + } + } + } } [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_WBS")]