protected int OnManyInserted(string name, IEnumerable <DataDictionary> data, string scope, int result) { var args = new DataManyInsertedEventArgs(name, data, scope, result); this.OnManyInserted(args); return(args.Count); }
protected virtual void OnManyInserted(DataManyInsertedEventArgs args) { var e = this.ManyInserted; if (e != null) { e(this, args); } }