예제 #1
0
 public void RenameReport(string path, string ActionPath)
 {
     this.builder = new RenameReportItemBuilder(path, ActionPath);
 }
예제 #2
0
 public void CreateReport(string path)
 {
     this.builder = new CreateReportItemBuilder(path);
 }
예제 #3
0
 public void DeleteReport(string path)
 {
     this.builder = new DeleteReportItemBuilder(path);
 }
예제 #4
0
 public void OpenReport(string path)
 {
     this.builder = new OpenReportItemBuilder(path);
 }
예제 #5
0
 public void CopyReport(string path, string ActionPath)
 {
     this.builder = new CopyReportItemBuilder(path, ActionPath);
 }