internal void OnExecuted(OrganizationServiceExecutedEventArgs e)
        {
            var handler = Executed;

            if (handler == null)
            {
                return;
            }

            handler(this, e);
        }
 protected virtual void OnExecuted(OrganizationServiceExecutedEventArgs e)
 {
     Events.OnExecuted(e);
 }