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