Exemplo n.º 1
0
        }         // FormatField

        /// <summary>
        ///
        /// </summary>
        /// <param name="d"></param>
        /// <param name="openPrincipal"></param>
        /// <param name="previousDay"></param>
        public OneDayLoanStatus(DateTime d, decimal openPrincipal, OneDayLoanStatus previousDay)
        {
            IsReschedulingDay = false;
            IsBetweenLastPaymentAndReschedulingDay = false;
            Date = d;
            OpenPrincipalForInterest     = openPrincipal;
            OpenPrincipalAfterRepayments = openPrincipal;
            AssignedFees      = 0;
            DailyInterestRate = 0;
            this.previousDay  = previousDay;

            Str = new FormattedData(this);
        }         // constructor
Exemplo n.º 2
0
 internal FormattedData(OneDayLoanStatus odls)
 {
     this.odls = odls;
 }