Beispiel #1
0
        public RunOrder(RunSection section, int value)
        {
            if (value < 0)
            {
                throw new NotImplementedException("Run order must be greater than zero");
            }

            this.Section = section;
            this.Value   = value;
        }
Beispiel #2
0
 public MinRun()
 {
     this.Section = RunSection.InitialPatch;
     this.Value   = -1;
 }