Ejemplo n.º 1
0
        /// <summary>
        ///     Initiates the export of the data model from Aras.
        /// </summary>
        /// <param name="options">The <see cref="ArgOptions"/> the program was started with.</param>
        /// <returns>An <see cref="ArasExport"/> object that holds the exported data model.</returns>
        private static ArasExport PerformArasExport(ArgOptions options)
        {
            var arasExport = new ArasExport(options);

            arasExport.RunExport();
            arasExport.SplitAllItemTypes();
            return(arasExport);
        }
Ejemplo n.º 2
0
 public GraphCreator(ArasExport arasExport)
 {
     ArasExport = arasExport;
 }