Exemplo n.º 1
0
        private int[] SelectionFromIndex(int[] indexes)
        {
            FilterSelection = new int[indexes.Length];

            for (var i = 0; i < indexes.Length; i++)
            {
                FilterSelection[i] = Categories[indexes[i] - 1].id;
            }

            _messenger.SendOfferActionMessage(this, MessengerOfferActionType.FilterDone);

            return(FilterSelection);
        }
Exemplo n.º 2
0
 protected virtual void SendOfferActionMessage(MessengerOfferActionType type)
 {
     Messenger.SendOfferActionMessage(this, type);
 }