/**
  * Load a single StewardshipPledge object,
  * by PersonId, StewardshipFundId Index(es)
  * @param integer $intPersonId
  * @param integer $intStewardshipFundId
  * @return StewardshipPledge
  */
 public static function LoadByPersonIdStewardshipFundId($intPersonId, $intStewardshipFundId, $objOptionalClauses = null)
 {
     return StewardshipPledge::QuerySingle(QQ::AndCondition(QQ::Equal(QQN::StewardshipPledge()->PersonId, $intPersonId), QQ::Equal(QQN::StewardshipPledge()->StewardshipFundId, $intStewardshipFundId)), $objOptionalClauses);
 }