IceHrm v18.0
This commit is contained in:
@@ -1,4 +1,18 @@
|
||||
<?php
|
||||
interface ReportBuilderInterface{
|
||||
public function getData($report,$request);
|
||||
public function createReportFile($report, $data);
|
||||
}
|
||||
|
||||
interface CSVReportBuilderInterface{
|
||||
public function getData($report,$request);
|
||||
public function createReportFile($report, $data);
|
||||
public function getMainQuery();
|
||||
public function getWhereQuery($request);
|
||||
}
|
||||
|
||||
interface PDFReportBuilderInterface{
|
||||
public function getData($report,$request);
|
||||
public function createReportFile($report, $data);
|
||||
public function getTemplate();
|
||||
}
|
||||
Reference in New Issue
Block a user