Ejemplo n.º 1
0
 /// <summary>
 /// Raises the PasswordUpdated Event
 /// </summary>
 /// <history>
 ///     [cnurse]	03/08/2006  Created
 /// </history>
 public void OnPasswordUpdated(PasswordUpdatedEventArgs e)
 {
     if (PasswordUpdatedEvent != null)
     {
         PasswordUpdatedEvent(this, e);
     }
 }
 /// -----------------------------------------------------------------------------
 /// <summary>
 /// Raises the PasswordQuestionAnswerUpdated Event
 /// </summary>
 /// <history>
 ///     [cnurse]	03/09/2006  Created
 /// </history>
 /// -----------------------------------------------------------------------------
 public void OnPasswordQuestionAnswerUpdated(PasswordUpdatedEventArgs e)
 {
     if (PasswordQuestionAnswerUpdated != null)
     {
         PasswordQuestionAnswerUpdated(this, e);
     }
 }
Ejemplo n.º 3
0
 /// -----------------------------------------------------------------------------
 /// <summary>
 /// Raises the PasswordQuestionAnswerUpdated Event
 /// </summary>
 public void OnPasswordQuestionAnswerUpdated(PasswordUpdatedEventArgs e)
 {
     if (IsUserOrAdmin == false)
     {
         return;
     }
     if (PasswordQuestionAnswerUpdated != null)
     {
         PasswordQuestionAnswerUpdated(this, e);
     }
 }
Ejemplo n.º 4
0
 /// -----------------------------------------------------------------------------
 /// <summary>
 /// Raises the PasswordQuestionAnswerUpdated Event
 /// </summary>
 /// <history>
 ///     [cnurse]	03/09/2006  Created
 /// </history>
 /// -----------------------------------------------------------------------------
 public void OnPasswordQuestionAnswerUpdated(PasswordUpdatedEventArgs e)
 {
     if ((IsUserOrAdmin == false) && (!ModulePermissionController.CanAdminModule(this.ModuleConfiguration)))
     {
         return;
     }
     if (PasswordQuestionAnswerUpdated != null)
     {
         PasswordQuestionAnswerUpdated(this, e);
     }
 }
Ejemplo n.º 5
0
 /// -----------------------------------------------------------------------------
 /// <summary>
 /// Raises the PasswordUpdated Event
 /// </summary>
 /// <history>
 ///     [cnurse]	03/08/2006  Created
 /// </history>
 /// -----------------------------------------------------------------------------
 public void OnPasswordUpdated(PasswordUpdatedEventArgs e)
 {
     if (IsUserOrAdmin == false && !currentUser.IsInRole("clubadmin"))
     {
         return;
     }
     if (PasswordUpdated != null)
     {
         PasswordUpdated(this, e);
     }
 }
Ejemplo n.º 6
0
        /// -----------------------------------------------------------------------------
        /// <summary>
        /// Raises the PasswordUpdated Event.
        /// </summary>
        public void OnPasswordUpdated(PasswordUpdatedEventArgs e)
        {
            if (this.IsUserOrAdmin == false)
            {
                return;
            }

            if (this.PasswordUpdated != null)
            {
                this.PasswordUpdated(this, e);
            }
        }
Ejemplo n.º 7
0
 /// -----------------------------------------------------------------------------
 /// <summary>
 /// Raises the PasswordQuestionAnswerUpdated Event
 /// </summary>
 /// <history>
 /// 	[cnurse]	03/09/2006  Created
 /// </history>
 /// -----------------------------------------------------------------------------
 public void OnPasswordQuestionAnswerUpdated(PasswordUpdatedEventArgs e)
 {
     if (IsUserOrAdmin == false)
     {
         return;
     }
     if (PasswordQuestionAnswerUpdated != null)
     {
         PasswordQuestionAnswerUpdated(this, e);
     }
 }
 /// -----------------------------------------------------------------------------
 /// <summary>
 /// Raises the PasswordUpdated Event
 /// </summary>
 /// <history>
 /// 	[cnurse]	03/08/2006  Created
 /// </history>
 /// -----------------------------------------------------------------------------
 public void OnPasswordUpdated(PasswordUpdatedEventArgs e)
 {
     if (PasswordUpdated != null)
     {
         PasswordUpdated(this, e);
     }
 }
Ejemplo n.º 9
0
 /// <summary>
 /// Raises the PasswordQuestionAnswerUpdated Event
 /// </summary>
 /// <history>
 /// 	[cnurse]	03/09/2006  Created
 /// </history>
 public void OnPasswordQuestionAnswerUpdated( PasswordUpdatedEventArgs e )
 {
     if( PasswordQuestionAnswerUpdatedEvent != null )
     {
         PasswordQuestionAnswerUpdatedEvent( this, e );
     }
 }