예제 #1
0
        protected int OnManyUpdated(string name, IEnumerable <DataDictionary> data, ICondition condition, string scope, int result)
        {
            var args = new DataManyUpdatedEventArgs(name, data, condition, scope, result);

            this.OnManyUpdated(args);
            return(args.Count);
        }
예제 #2
0
        protected virtual void OnManyUpdated(DataManyUpdatedEventArgs args)
        {
            var e = this.ManyUpdated;

            if (e != null)
            {
                e(this, args);
            }
        }