Ejemplo n.º 1
0
 private void RemoveAction(ActionsHomeModel singlePC)
 {
     lock (this._currentActionsList)
     {
         this._currentActionsList.Remove(singlePC);
     }
 }
Ejemplo n.º 2
0
 public void AddAction(ActionsHomeModel singlePC)
 {
     if (!this._currentActionsList.Contains(singlePC))
     {
         lock (this._currentActionsList)
         {
             this._currentActionsList.Add(singlePC);
         }
     }
 }