1
This commit is contained in:
@@ -243984,6 +243984,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<bool> _IsUpdate;
|
||||
|
||||
private string _HazardName;
|
||||
|
||||
private EntityRef<Person_Persons> _Person_Persons;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
@@ -244024,6 +244026,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()
|
||||
@@ -244361,6 +244365,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HazardName", DbType="NVarChar(50)")]
|
||||
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_LargerHazard_Person_Persons_RecardMan", Storage="_Person_Persons", ThisKey="RecardMan", OtherKey="PersonId", IsForeignKey=true)]
|
||||
public Person_Persons Person_Persons
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user