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); }
protected virtual void OnManyUpdated(DataManyUpdatedEventArgs args) { var e = this.ManyUpdated; if (e != null) { e(this, args); } }