/**
  * @param $id
  * @return AddressLookupQuotaHelper
  */
 public static function registerLookupQuotaHelper($id)
 {
     $volume = new AddressLookupQuotaHelper();
     $volume->setId($id);
     $volume->setLastLookupDateTime(DateTimeService::getUTCnow());
     $volume->setCurrentDailyLookups(0);
     $volume->setCurrentMonthlyLookups(0);
     return $volume;
 }