Ejemplo n.º 1
0
        protected void OnEnityNotExistNotification(EnityNotExistNotificationHandlerArgs <TId> args)
        {
            EnityNotExistNotificationHandler <TId> handler = EnityNotExistNotification;

            if (handler != null)
            {
                handler(this, args);
            }
        }
Ejemplo n.º 2
0
 private void OnEnityNotExistNotificationHandler(object sender, EnityNotExistNotificationHandlerArgs <TId> args)
 {
     OnEnityNotExistNotification(args);
 }