コード例 #1
0
ファイル: Divan.designer.cs プロジェクト: hessamb/Divan
 partial void DeleteConsistencyRule(ConsistencyRule instance);
コード例 #2
0
ファイル: Divan.designer.cs プロジェクト: hessamb/Divan
 partial void UpdateConsistencyRule(ConsistencyRule instance);
コード例 #3
0
ファイル: Divan.designer.cs プロジェクト: hessamb/Divan
		private void detach_ConsistencyRules(ConsistencyRule entity)
		{
			this.SendPropertyChanging();
			entity.Asset = null;
		}
コード例 #4
0
ファイル: Divan.designer.cs プロジェクト: hessamb/Divan
 partial void InsertConsistencyRule(ConsistencyRule instance);
コード例 #5
0
ファイル: NewAssetWindow.cs プロジェクト: hessamb/Divan
 private void saveConsistencyRules()
 {
     foreach (DataGridViewRow row in dataGrid_consistencyRules.Rows)
     {
         if (row.IsNewRow)
             continue;
         ConsistencyRule rule = new ConsistencyRule();
         rule.mValue = (String)row.Cells[0].Value;
         rule.sValue = (String)row.Cells[2].Value;
         rule.condition = (String)row.Cells[1].Value;
         rule.importance = ConsistencyRule.getImportance((String)row.Cells[3].Value);
         asset.ConsistencyRules.Add(rule);
     }
     DivanDataContext.Instance.SubmitChanges();
 }