I want to say:
[pre]
PrintReportAdapter = new PrintReportAdapter(args);
PrintReportAdapter.PrintARInvoice(args);
[/pre]
But all I have to work with is a BO:
[pre]
boPrintReport
[/pre]
ERP10 discourages the direct use of BOs. I cannot say:
[pre]
boPrintReport = new PrintReportImpl(args);
[/pre]
In ERP10, arguments for an Impl cannot simply be passed a connection pool as in ERP8 like this:
[pre]
boPrintReport = new Epicor.Mfg.BO.MyPrintReport(boSession.ConnectionPool);
[/pre]
What can I do?
[pre]
PrintReportAdapter = new PrintReportAdapter(args);
PrintReportAdapter.PrintARInvoice(args);
[/pre]
But all I have to work with is a BO:
[pre]
boPrintReport
[/pre]
ERP10 discourages the direct use of BOs. I cannot say:
[pre]
boPrintReport = new PrintReportImpl(args);
[/pre]
In ERP10, arguments for an Impl cannot simply be passed a connection pool as in ERP8 like this:
[pre]
boPrintReport = new Epicor.Mfg.BO.MyPrintReport(boSession.ConnectionPool);
[/pre]
What can I do?