Update content/docs/patterns/template-method-pattern/index.md
Co-authored-by: Henrik Helgesen <henrik@helgesen.consulting>
This commit is contained in:
parent
e9225a9ca8
commit
f5f8983e0b
1 changed files with 2 additions and 2 deletions
|
|
@ -110,9 +110,9 @@ codeunit 50001 SalesHeaderExport implements IDataExport
|
||||||
//Generate Exportdata here
|
//Generate Exportdata here
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure NextLine(): Boolean
|
procedure NextLine(Steps : integer): Boolean
|
||||||
begin
|
begin
|
||||||
exit(SalesLines.Next() > 0);
|
exit(SalesLines.Next(Steps) <> 0);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure Finish()
|
procedure Finish()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue