main
 1using System;
 2using gorilla.commons.utility;
 3
 4namespace MoMoney.Presentation.Model.Excel
 5{
 6    public class Cell
 7    {
 8        static public Specification<ICell> occurs_between_columns(int left_column, int right_column)
 9        {
10            throw new NotImplementedException();
11        }
12
13        static public Specification<ICell> occurs_after_row(int row_number)
14        {
15            throw new NotImplementedException();
16        }
17
18        static public Specification<ICell> is_named(string name_of_the_cell)
19        {
20            throw new NotImplementedException();
21        }
22    }
23}