DeleteProcessManager() 공개 메소드

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.
리턴 bool
예제 #1
0
 public bool DeleteProcessManager(int AtulUserID)
 {
     bool success = false;
     AtulBusinessLogic adb = new AtulBusinessLogic();
     success = adb.DeleteProcessManager(AtulUserID);
     return success;
 }