123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace EmisTerminal
- {
- public class Const
- {
- public static string LOCAL_SETTING_EMIS_URL
- {
- get
- {
- try
- {
- return System.Configuration.ConfigurationManager.AppSettings["EMISUrl"];
- }
- catch (Exception ex)
- {
- string e = ex.ToString();
- return "";
- }
- }
- }
- public static string LOCAL_SETTING_REPORT_URL
- {
- get
- {
- try
- {
- return System.Configuration.ConfigurationManager.AppSettings["EMISReportUrl"];
- }
- catch (Exception ex)
- {
- string e = ex.ToString();
- return "";
- }
- }
- }
- public static string LOCAL_SETTING_REPORT_USER_NAME
- {
- get
- {
- try
- {
- return System.Configuration.ConfigurationManager.AppSettings["EMISReportUser"];
- }
- catch (Exception ex)
- {
- string e = ex.ToString();
- return "";
- }
- }
- }
- public static string LOCAL_SETTING_REPORT_PASSWORD
- {
- get
- {
- try
- {
- return System.Configuration.ConfigurationManager.AppSettings["EMISReportPass"];
- }
- catch (Exception ex)
- {
- string e = ex.ToString();
- return "";
- }
- }
- }
- public static string NATCA_PASSWORD
- {
- get
- {
- try
- {
- return System.Configuration.ConfigurationManager.AppSettings["NETCAPwd"];
- }
- catch (Exception ex)
- {
- string e = ex.ToString();
- return "";
- }
- }
- }
- }
- }
|