示例#1
0
        private void OnActionStateNotification(ActionStateNotificationArgs <TEntity> args)
        {
            ActionStateNotificationHandler <TEntity> handler = ActionStateNotification;

            if (handler != null)
            {
                handler(this, args);
            }
        }
示例#2
0
 private void OnActionStateNotificationHandler(object sender, ActionStateNotificationArgs <TEntity> args)
 {
     OnActionStateNotification(args);
 }