Exemple #1
0
 public ChangeSuperusersToAdministrators(
     ISystemAuthenticationControl systemAuthenticationControl,
     IUpdateStoreCallback callback)
 {
     theSystemAuthenticationControl = systemAuthenticationControl;
     theCallback = callback;
 }
Exemple #2
0
 /// <summary>
 /// For all system users, update the assigned roles to replace the 'SUPERUSER' role and with 'ADMINISTRATOR'.
 /// </summary>
 /// <param name="callback"></param>
 public void ChangeSuperUsersToAdministrators(IUpdateStoreCallback callback)
 {
     theSystemAuthenticationControl.GetSystemAuthentication(
         new ChangeSuperusersToAdministrators(theSystemAuthenticationControl, callback));
 }
 public ChangeSuperusersToAdministrators( ISystemAuthenticationControl systemAuthenticationControl,
     IUpdateStoreCallback callback )
 {
     theSystemAuthenticationControl = systemAuthenticationControl;
     theCallback = callback;
 }
 /// <summary>
 /// For all system users, update the assigned roles to replace the 'SUPERUSER' role and with 'ADMINISTRATOR'.
 /// </summary>
 /// <param name="callback"></param>
 public void ChangeSuperUsersToAdministrators( IUpdateStoreCallback callback )
 {
     theSystemAuthenticationControl.GetSystemAuthentication(
         new ChangeSuperusersToAdministrators( theSystemAuthenticationControl, callback ) );
 }