/**
  * Count ShippingAccounts
  * by CreatedBy Index(es)
  * @param integer $intCreatedBy
  * @return int
  */
 public static function CountByCreatedBy($intCreatedBy)
 {
     // Call ShippingAccount::QueryCount to perform the CountByCreatedBy query
     return ShippingAccount::QueryCount(QQ::Equal(QQN::ShippingAccount()->CreatedBy, $intCreatedBy));
 }