Exemple #1
0
        public static IList<UserProfile> FindByUserType(UserType ut)
        {
            if (!ut.ID.HasValue)
                return new List<UserProfile>();

            return FindByUserType(ut.ID.Value);
        }
Exemple #2
0
 public bool HasUserType( UserType ut )
 {
     return HasRelatedItem<UserType>( "eoc-to-user-types", ut );
 }
Exemple #3
0
 public void RemoveUserType( UserType ut )
 {
     RemoveRelatedItem( "eoc-to-user-types", ut );
 }
Exemple #4
0
 public void AddUserType( UserType ut )
 {
     AddRelatedItem( "eoc-to-user-types", ut );
 }