Esempio n. 1
0
 public VoiceMail(string name, PlotInitType initType, int priority, TimeSpan timeBasedSendTimeSpan,
                  TimeSpan plotBasedDelayTime,
                  TimeSpan waitTimeBeforeBreak, List <string> prePlots) : base(name, initType, priority, timeBasedSendTimeSpan,
                                                                               plotBasedDelayTime,
                                                                               waitTimeBeforeBreak, prePlots)
 {
 }
Esempio n. 2
0
 public Plot(
     string name, PlotInitType initType, int priority, TimeSpan timeBasedSendTimeSpan, TimeSpan plotBasedDelayTime,
     TimeSpan waitTimeBeforeBreak, List <string> prePlots)
 {
     this.name     = name;
     this.initType = initType;
     this.priority = priority;
     this.timeBasedSendTimeSpan = timeBasedSendTimeSpan;
     this.plotBasedDelayTime    = plotBasedDelayTime;
     this.waitTimeBeforeBreak   = waitTimeBeforeBreak;
     this.prePlots = prePlots;
 }