public static function factory(Storage $storage, $process, $row) { $handler = parent::factory($storage, $process, $row); $handler->setName($row["name"]); $handler->setBankCode($row["bankcode"]); $handler->setAccount($row["account"]); return $handler; }
public static function factory(Storage $storage, $process, $row) { $handler = parent::factory($storage, $process, $row); $handler->setName($row["name"]); $handler->setIBan($row["iban"]); $handler->setBIC($row["bic"]); $handler->setCreditorId($row["creditor_id"]); return $handler; }