public Application(params Object[] objects) { Tables = new Tables(this, objects.OfType <Table>()); Pages = new Pages(this, objects.OfType <Page>()); Reports = new Reports(this, objects.OfType <Report>()); XmlPorts = new XmlPorts(this, objects.OfType <XmlPort>()); Codeunits = new Codeunits(this, objects.OfType <Codeunit>()); Queries = new Queries(this, objects.OfType <Query>()); MenuSuites = new MenuSuites(this, objects.OfType <MenuSuite>()); }
public void Clear() { Tables.Clear(); Pages.Clear(); Reports.Clear(); XmlPorts.Clear(); Codeunits.Clear(); Queries.Clear(); MenuSuites.Clear(); }