main
1using System;
2
3namespace presentation.windows.server.domain.accounting
4{
5    public interface Range<T> where T : IComparable<T>
6    {
7        bool includes(T item);
8    }
9}