Example #1
0
        private void RaiseAccountDataUpdated(IEnumerable <long> targetUsers, bool isAdded)
        {
            var rdci = new RelationDataChangedInfo
            {
                AccountUserId = _parent.AccountId,
                IsIdAdded     = isAdded,
                TargetUserIds = targetUsers,
                Type          = _type
            };

            AccountDataUpdated.SafeInvoke(rdci);
        }
Example #2
0
 private void PropagateEvent(RelationDataChangedInfo e)
 {
     AccountDataUpdated.SafeInvoke(e);
     AccountDataUpdatedStatic.SafeInvoke(e);
 }