main
1using System;
2
3namespace solidware.financials.service.domain.accounting
4{
5 public class MCF : SimpleUnitOfMeasure
6 {
7 public override string pretty_print(decimal amount)
8 {
9 throw new NotImplementedException();
10 }
11 }
12}