TheAirline.Models.General.Countries.Union.IsMember C# (CSharp) Method

IsMember() public method

public IsMember ( Country country, System.DateTime date ) : bool
country Country
date System.DateTime
return bool
        public bool IsMember(Country country, DateTime date)
        {
            return Members.Find(m => m.Country == country && m.MemberFromDate < date && m.MemberToDate > date)
                   != null;
        }