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
 public bool DeleteProcessManager(int AtulUserID)
 {
     bool success = false;
     AtulBusinessLogic adb = new AtulBusinessLogic();
     success = adb.DeleteProcessManager(AtulUserID);
     return success;
 }