Exemplo n.º 1
0
        public AmortizationSchedule LoadAmortizationSchedule(Project project, string asOfDate)
        {
            var filePath = GetAmortizationSchedulePath(project, asOfDate);
            AmortizationSchedule amortizationSchedule = new AmortizationSchedule();

            amortizationSchedule.Load(filePath);
            return(amortizationSchedule);
        }