Пример #1
0
        public static string GetReportTableName(Reporting.IReport report, int userId, string postfix)
        {
            var prefix = GetReportTableName(report, userId);

            if (string.IsNullOrWhiteSpace(postfix))
            {
                return(prefix);
            }

            return(string.Format("{0}_{1}", prefix, postfix));
        }
Пример #2
0
        public static string GetReportTableName(Reporting.IReport report, int userId)
        {
            var reportName = report.Info.Name;

            return(GetReportTableName(reportName, userId));
        }