public string GetReportData(List <int> loadingPlanIDs, int print_type, int iRequesterID, out Library.DTO.Notification notification)
        {
            DAL.LoadingPlanMng.ReportDataFactory print_factory = new DAL.LoadingPlanMng.ReportDataFactory();
            // keep log entry
            fwBLL.WriteLog(iRequesterID, 0, "get loading plan report");

            // query data
            return(print_factory.GetReportData(loadingPlanIDs, print_type, iRequesterID, out notification));
        }
 public DTO.LoadingPlanMng.LoadingPlanReportDTO GetReportHTML(int loadingPlanID, out Library.DTO.Notification notification)
 {
     DAL.LoadingPlanMng.ReportDataFactory report_factory = new DAL.LoadingPlanMng.ReportDataFactory();
     return(report_factory.GetPrinOutHTML(loadingPlanID, out notification));
 }