コード例 #1
0
ファイル: CsDbArcDatabase.cs プロジェクト: cssack/CsGlobals
		/// <summary>Removes the view.</summary>
		public void RemoveView(CsDbArcView view)
		{
			if (view.Owner != this)
				throw new InvalidOperationException("This view belongs to another Architecture");

			_views.Remove(view);
			view.SetRemoved();
		}
コード例 #2
0
ファイル: CsDbCodeDataView.cs プロジェクト: cssack/CsGlobals
		/// <summary>Creates a new code set.</summary>
		public CsDbCodeDataView(CsDbArcView architecture, CsDbCodeBundleForDb codebundle)
		{
			Architecture = architecture;
			CodeBundle = codebundle;
			Row = new CsDbcViewRow(this);
		}