TheAirline.Models.Airliners.AirlinerTypes.GetTypes C# (CSharp) Method

GetTypes() public static method

public static GetTypes ( Predicate match ) : List
match Predicate
return List
        public static List<AirlinerType> GetTypes(Predicate<AirlinerType> match)
        {
            return _types.FindAll(t => t.IsStandardType).FindAll(match);
        }