PaulStovell.TrialBalance.DomainModel.Period.GetPrevious C# (CSharp) Method

GetPrevious() public method

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