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