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

IncludesDate() public method

public IncludesDate ( System.DateTime date ) : bool
date System.DateTime
return bool
        public bool IncludesDate(DateTime date)
        {
            return this.StartDate <= date.Date && this.EndDate >= date.Date;
        }