Ejemplo n.º 1
0
 /// <summary>
 /// Raise the event within the method.
 /// </summary>
 /// <param name="e"></param>
 protected virtual void RiseCreated(UserEditEventArgs e)
 {
     // If event was attached then fire it.
     if (Created != null)
     {
         Created(this, e);
     }
 }
Ejemplo n.º 2
0
 void UserEdit1_Updated(object sender, UserEditEventArgs e)
 {
     //    // User was just updated. We need update UserAdvanced info too.
     //    UserList1.RefreshList();
     //    UserAdvancedEdit1.SaveByUser(e.User);
 }