コード例 #1
0
ファイル: ReportService.asmx.cs プロジェクト: phinamcn03/ttdk
 public string DeleteFile(string pFileName, string pLocation)
 {
     return(CReportFunction.DeleteReport(pFileName, pLocation));
 }
コード例 #2
0
ファイル: ReportService.asmx.cs プロジェクト: phinamcn03/ttdk
 public string CreateFolder(string pFolderName)
 {
     return(CReportFunction.CreateFolder(pFolderName));
 }
コード例 #3
0
ファイル: ReportService.asmx.cs プロジェクト: phinamcn03/ttdk
 public string SaveFile(byte[] pBuffer, string pLocalion, string pFileName)
 {
     return(CReportFunction.SaveReport(pBuffer, pLocalion, pFileName));
 }
コード例 #4
0
ファイル: ReportService.asmx.cs プロジェクト: phinamcn03/ttdk
 public string GetDicrectory()
 {
     return(CReportFunction.GetDirrectoryInfo(AppDomain.CurrentDomain.BaseDirectory + System.Configuration.ConfigurationManager.AppSettings["FWS.Framework.Report.FolderName"]));
 }