예제 #1
0
        public Table(IReadOnlyCollection <ICell> cells, IElementDescription description)
        {
            Guard.ObjectNotNull(() => cells);

            Cells       = cells;
            Description = description;
        }
예제 #2
0
        public Shape(IElementDescription description)
        {
            Guard.ObjectNotNull(() => description);

            Description = description;
        }