main
1namespace presentation.windows.server.domain.accounting
2{
3 public interface UnitOfMeasure
4 {
5 double convert(double amount, UnitOfMeasure other);
6 string pretty_print(double amount);
7 }
8
9}