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

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

            Description = description;
        }