Exemple #1
0
        private void FinalizeCad()
        {
            Drawing.Bring1FDrawingToTop(this.type);
            AutoCad.FinalizeAutoProcess();

            if (this.drawings.Count == 0)
            {
                return;
            }

            var constructionCode = this.drawings[0].ConstructionCode;
            var planNo           = this.drawings[0].PlanNo;
            var zumenNo          = this.drawings[0].RevisionNo;

            using (var service = new SocketPlanService())
            {
                service.LogSocketPlanFramed(constructionCode, planNo, zumenNo);
            }
        }
Exemple #2
0
 private void InitializeCad()
 {
     AutoCad.PrepareAutoProcess();
 }