Example #1
0
 public PersistentPatch(AbstractCommand command, HashSet<string> restrictToEnvironments, Context context)
     : base(restrictToEnvironments, context)
 {
     this.command = command;
     throw new NotImplementedException("Persistent patches are not implemented yet");
 }
Example #2
0
 public AtomicPatch(AbstractCommand[] commands, bool isStrictCommandSet, HashSet<string> restrictToEnvironments, Context context)
     : base(restrictToEnvironments, context)
 {
     this.commands = commands;
     this.isStrictCommandSet = isStrictCommandSet;
 }