DeleteProcessManager() public method

Deletes the process manager. TODO: [This is invalid, we would need to specify the process, usertypeID and the userID. Probably need a new proc]
public DeleteProcessManager ( int AtulUserID ) : bool
AtulUserID int The atul user ID.
return bool
Beispiel #1
0
 /// <summary>
 /// Deletes the process manager.
 /// TODO: [This is invalid, we would need to specify the process, usertypeID and the userID. Probably need a new proc]
 /// </summary>
 /// <param name="AtulUserID">The atul user ID.</param>
 /// <returns></returns>
 public bool DeleteProcessManager(string AtulUserID)
 {
     bool success = false;
     Atul_v1Data adb = new Atul_v1Data();
     success = adb.DeleteProcessManager(Convert.ToInt32(AtulUserID));
     return success;
 }
Beispiel #2
0
 /// <summary>
 /// Deletes the process manager.
 /// TODO: [This is invalid, we would need to specify the process, usertypeID and the userID. Probably need a new proc]
 /// </summary>
 /// <param name="AtulUserID">The atul user ID.</param>
 /// <returns></returns>
 public bool DeleteProcessManager(int AtulUserID)
 {
     bool success = false;
     Atul_v1Data adb = new Atul_v1Data();
     success = adb.DeleteProcessManager(AtulUserID);
     return success;
 }