/**
  * Load a single NotificationUserAccount object,
  * by NotificationUserAccountId Index(es)
  * @param integer $intNotificationUserAccountId
  * @return NotificationUserAccount
  */
 public static function LoadByNotificationUserAccountId($intNotificationUserAccountId)
 {
     return NotificationUserAccount::QuerySingle(QQ::Equal(QQN::NotificationUserAccount()->NotificationUserAccountId, $intNotificationUserAccountId));
 }
 /**
  * Load a single NotificationUserAccount object,
  * by NotificationUserAccountId Index(es)
  * @param integer $intNotificationUserAccountId
  * @return NotificationUserAccount
  */
 public static function LoadByNotificationUserAccountId($intNotificationUserAccountId, $objOptionalClauses = null)
 {
     return NotificationUserAccount::QuerySingle(QQ::Equal(QQN::NotificationUserAccount()->NotificationUserAccountId, $intNotificationUserAccountId), $objOptionalClauses);
 }