main
 1using System.Collections.Generic;
 2using gorilla.commons.utility;
 3
 4namespace MoMoney.Presentation.Model.Excel
 5{
 6    public class ExcelUsage
 7    {
 8        public IEnumerable<ICellVisitor> run()
 9        {
10            yield return new ConstrainedCellVisitor(
11                new ChangeFontSize(8),
12                Cell.occurs_between_columns(3, 8)
13                    .and(Cell.occurs_after_row(5))
14                    .or(Cell.is_named("P3")));
15        }
16    }
17}