29 lines
575 B
C#
29 lines
575 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace PDFGenerator
|
|
{
|
|
//public static class Statics
|
|
//{
|
|
// private static bool IsPrivateClient
|
|
// {
|
|
// get
|
|
// {
|
|
// try
|
|
// {
|
|
// return ConfigurationManager.AppSettings["privateClient"] == "true";
|
|
// }
|
|
// catch
|
|
// {
|
|
// return false;
|
|
// }
|
|
// }
|
|
// }
|
|
|
|
|
|
//}
|
|
}
|