예제 #1
0
        public AutomationGroup(AutomatizationManagerBase parent, AutomationGroupEntry entry, List <AutomationEntry> automations, List <KiwiclicksOfferEntry> offers)
        {
            this._manager     = parent;
            this._entry       = entry;
            this._automations = new List <Automation>();
            foreach (AutomationEntry ae in automations)
            {
                this._automations.Add(new Automation(this, ae));
                if (ae.ID > this._maxID)
                {
                    this._maxID = ae.ID;
                }
            }

            this.SetOffers(offers);
        }
예제 #2
0
 public TransactionManager(AutomatizationManagerBase parent)
 {
     this._parent = parent;
 }