Exemple #1
0
		/// <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();
		}
Exemple #2
0
		/// <summary>Creates a new code set.</summary>
		public CsDbCodeDataView(CsDbArcView architecture, CsDbCodeBundleForDb codebundle)
		{
			Architecture = architecture;
			CodeBundle = codebundle;
			Row = new CsDbcViewRow(this);
		}