Example #1
0
 public static bool HasPreferredLanguage(this StaffRole user)
 => user is IRequirePreferredLanguage;
Example #2
0
 public static bool HasNationalSociety(this StaffRole user)
 => user is IRequireNationalSociety;
Example #3
0
 public static bool HasPosition(this StaffRole user)
 => user is IRequirePosition;
Example #4
0
 public static bool HasLocation(this StaffRole user)
 => user is IRequireLocation;
Example #5
0
 public static bool HasDutyStation(this StaffRole user)
 => user is IRequireDutyStation;
Example #6
0
 public static bool HasBirthYear(this StaffRole user)
 => user is IRequireBirthYear || user is ISupportBirthYear;
Example #7
0
 public static bool HasAssignedNationalSocieties(this StaffRole user)
 => user is IRequireAssignedNationalSocieties;
Example #8
0
 public static bool HasPhoneNumbers(this StaffRole user)
 => user is IRequirePhoneNumbers || user is ISupportPhoneNumbers;