public bool IsOlderThan(IStudent other) { bool isOlder = this.GetAge() - other.GetAge() > 0; return isOlder; }