Ejemplo n.º 1
0
        internal void Setup(Dispatcher _dispatcher, int shareTent)
        {
            this._fc          = _dispatcher.SiteFeatureClass;
            this._earthquake  = _dispatcher.Earthquake;
            this._regionCoffe = _dispatcher.Region;
            _idxUrgentPop     = _fc.Fields.FindField(UrgentPopField);
            _refugeeSites     = GetRefugeeSites();

            RefugeeSiteTentCol.PersonPerTent = shareTent;
        }
Ejemplo n.º 2
0
        internal void Setup(Dispatcher dispatcher, int daysInShort, int quota)
        {
            this._fc         = dispatcher.SiteFeatureClass;
            this._earthquake = dispatcher.Earthquake;
            RefugeeSiteFoodCol.DaysInShort = daysInShort;
            RefugeeSiteFoodCol.FoodQuota   = quota;

            this._regionCoffe = dispatcher.Region;
            _idxPop           = _fc.Fields.FindField(PopulationField);
            _refugeeSites     = GetRefugeeSites();
        }