summaryrefslogtreecommitdiff
path: root/src/domain/IUnitOfMeasure.cs
blob: 661f38fcd915a7abd7e9dfc6c10ad0255b4be6eb (plain)
1
2
3
4
5
6
7
namespace domain
{
  public interface IUnitOfMeasure
  {
    decimal Convert(decimal amount, IUnitOfMeasure units);
  }
}