PaulStovell.TrialBalance.DomainModel.Period.GetPrevious C# (CSharp) 메소드

GetPrevious() 공개 메소드

Gets the accounting period that came before this one.
public GetPrevious ( ) : Period
리턴 Period
        public Period GetPrevious()
        {
            return CalculatePeriodForDate(this.StartDate.AddMonths(-1 * (int)_length), this.StartDate, this.Length);
        }