Exemplo n.º 1
0
        protected DataManyUpdatingEventArgs OnManyUpdating(string name, object data, ICondition condition, string scope)
        {
            var args = new DataManyUpdatingEventArgs(name, GetDataDictionaries(data), condition, scope);

            this.OnManyUpdating(args);
            return(args);
        }
Exemplo n.º 2
0
        protected DataManyUpdatingEventArgs OnManyUpdating(object data, ICondition condition, string scope)
        {
            var args = new DataManyUpdatingEventArgs(this.Name, DataDictionary <TEntity> .GetDataDictionaries(data), condition, scope);

            this.OnManyUpdating(args);
            return(args);
        }
Exemplo n.º 3
0
        protected virtual void OnManyUpdating(DataManyUpdatingEventArgs args)
        {
            var e = this.ManyUpdating;

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