public bool Match(Cat cat) { return(cat.GetFullName() == null); }
public bool Match(Cat cat) { return(cat._firstName.StartsWith("A")); }
public bool Match(Cat cat) { return(cat.GetFirstName() == "Occam" && cat.GetAge() == 1); }
public bool Match(Cat cat) { return(cat.GetFullName() == "Achat Leo Lenis"); }
public bool Match(Cat cat) { return(cat._age + 1 == 2); }
public bool Match(Cat cat) { return((cat._father._father != null && cat._father._father._firstName == "Edwin") || cat._father._firstName == "Edwin"); }
public bool Match(Cat cat) { return(cat._father._father._firstName == "Edwin"); }
public bool Match(Cat cat) { return(cat._father._age == 1); }
public bool Match(Cat cat) { return(cat._age == 7); }