Exemplo n.º 1
0
        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);
        }
Exemplo n.º 2
0
        protected virtual void OnManyInserted(DataManyInsertedEventArgs args)
        {
            var e = this.ManyInserted;

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