Exemple #1
0
        public static CircleSegment CreateCircleSegment(Drawing drawing, IList <IFigure> foundDependencies)
        {
            var result = new CircleSegment()
            {
                Drawing = drawing, Dependencies = foundDependencies
            };

            return(result);
        }
Exemple #2
0
 public static CircleSegment CreateCircleSegment(Drawing drawing, IList<IFigure> foundDependencies)
 {
     var result = new CircleSegment() { Drawing = drawing, Dependencies = foundDependencies };
     return result;
 }