Exemple #1
0
 public void AddExecutor(string psExecutor)
 {
     if (!String.IsNullOrEmpty(psExecutor))
     {
         ApprovedExecutors.Add(psExecutor);
     }
 }
Exemple #2
0
 public void RemoveExecutor(string psExecutor)
 {
     if (!String.IsNullOrEmpty(psExecutor))
     {
         ApprovedExecutors.Remove(psExecutor);
     }
 }