Example #1
0
 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>());
 }
Example #2
0
 public void Clear()
 {
     Tables.Clear();
     Pages.Clear();
     Reports.Clear();
     XmlPorts.Clear();
     Codeunits.Clear();
     Queries.Clear();
     MenuSuites.Clear();
 }