main
1namespace domain
2{
3  public interface IUnitOfMeasure
4  {
5    decimal Convert(decimal amount, IUnitOfMeasure units);
6  }
7}