Ejemplo n.º 1
0
        /// <summary>
        /// Raises the <see cref="Deleted"/> event.
        /// </summary>
        /// <param name="e">The <see cref="Cuemon.Data.DataAdapterEventArgs"/> instance containing the event data.</param>
        protected virtual void OnDeletedRaised(DataAdapterEventArgs e)
        {
            EventHandler <DataAdapterEventArgs> handler = Deleting;

            EventUtility.Raise(handler, this, e);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Raises the <see cref="Updated"/> event.
        /// </summary>
        /// <param name="e">The <see cref="Cuemon.Data.DataAdapterEventArgs"/> instance containing the event data.</param>
        protected virtual void OnUpdatedRaised(DataAdapterEventArgs e)
        {
            EventHandler <DataAdapterEventArgs> handler = Updated;

            EventUtility.Raise(handler, this, e);
        }