public bool updateReport(Report rp)
 {
     BusinessLogic.AnalyticsController BL = new BusinessLogic.AnalyticsController();
     return BL.updateReport(rp);
 }
 public Report getReport(string reportID)
 {
     BusinessLogic.AnalyticsController BL = new BusinessLogic.AnalyticsController();
     return BL.getReport(reportID);
 }
 public List<Report> getReports()
 {
     BusinessLogic.AnalyticsController BL = new BusinessLogic.AnalyticsController();
     return BL.getReports();
 }
 public List<ReportResultWeb> generateExistingReportStyle3(string reportID, string type)
 {
     BusinessLogic.AnalyticsController BL = new BusinessLogic.AnalyticsController();
     return BL.generateExistingReportStyle3(reportID, type);
 }
 public string generateNewReport(string EmpID, string Title, string StartD, string EndD, string Remark, string Type, string Criteria, string Precriteria)
 {
     BusinessLogic.AnalyticsController BL = new BusinessLogic.AnalyticsController();
     return BL.generateNewReport(EmpID, Title, StartD, EndD, Remark, Type, Criteria, Precriteria);
 }
Пример #6
0
 public Report getReport(string reportID)
 {
     BusinessLogic.AnalyticsController BL = new BusinessLogic.AnalyticsController();
     return(BL.getReport(reportID));
 }
 public List<ReportResult> generateExistingReportStyle2(string reportID)
 {
     BusinessLogic.AnalyticsController BL = new BusinessLogic.AnalyticsController();
     return BL.generateExistingReportStyle2(reportID);
 }
Пример #8
0
 public List <ReportResultWeb> generateExistingReportStyle3(string reportID, string type)
 {
     BusinessLogic.AnalyticsController BL = new BusinessLogic.AnalyticsController();
     return(BL.generateExistingReportStyle3(reportID, type));
 }
Пример #9
0
 public List <ReportResult> generateExistingReportStyle2(string reportID)
 {
     BusinessLogic.AnalyticsController BL = new BusinessLogic.AnalyticsController();
     return(BL.generateExistingReportStyle2(reportID));
 }
Пример #10
0
 public string generateNewReport(string EmpID, string Title, string StartD, string EndD, string Remark, string Type, string Criteria, string Precriteria)
 {
     BusinessLogic.AnalyticsController BL = new BusinessLogic.AnalyticsController();
     return(BL.generateNewReport(EmpID, Title, StartD, EndD, Remark, Type, Criteria, Precriteria));
 }
Пример #11
0
 public bool updateReport(Report rp)
 {
     BusinessLogic.AnalyticsController BL = new BusinessLogic.AnalyticsController();
     return(BL.updateReport(rp));
 }
Пример #12
0
 public List <Report> getReports()
 {
     BusinessLogic.AnalyticsController BL = new BusinessLogic.AnalyticsController();
     return(BL.getReports());
 }