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