1
This commit is contained in:
@@ -355462,6 +355462,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<bool> _IsUpdate;
|
||||
|
||||
private string _HazardName;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Sys_User> _Sys_User;
|
||||
@@ -355502,6 +355504,8 @@ namespace Model
|
||||
partial void OnOperativesNumChanged();
|
||||
partial void OnIsUpdateChanging(System.Nullable<bool> value);
|
||||
partial void OnIsUpdateChanged();
|
||||
partial void OnHazardNameChanging(string value);
|
||||
partial void OnHazardNameChanged();
|
||||
#endregion
|
||||
|
||||
public Solution_LargerHazard()
|
||||
@@ -355839,6 +355843,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HazardName", DbType="NVarChar(200)")]
|
||||
public string HazardName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._HazardName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._HazardName != value))
|
||||
{
|
||||
this.OnHazardNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._HazardName = value;
|
||||
this.SendPropertyChanged("HazardName");
|
||||
this.OnHazardNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Solution_LargerSolution_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user