Compare commits

..

No commits in common. "8ea587a495d795a114952a3b126972326028fba4" and "48a84cfd6c91673423c65e2730a62e28d6169e27" have entirely different histories.

2 changed files with 0 additions and 24 deletions

Binary file not shown.

View File

@ -21481,8 +21481,6 @@ namespace Model
private int _Status;
private string _ReportNo;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@ -21501,8 +21499,6 @@ namespace Model
partial void OnCreatedTimeChanged();
partial void OnStatusChanging(int value);
partial void OnStatusChanged();
partial void OnReportNoChanging(string value);
partial void OnReportNoChanged();
#endregion
public PMI_DelegationDetails()
@ -21650,26 +21646,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="reportNo", Storage="_ReportNo", DbType="NVarChar(50)")]
public string ReportNo
{
get
{
return this._ReportNo;
}
set
{
if ((this._ReportNo != value))
{
this.OnReportNoChanging(value);
this.SendPropertyChanging();
this._ReportNo = value;
this.SendPropertyChanged("ReportNo");
this.OnReportNoChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;