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