2023-05-22 12:32:46 +00:00
|
|
|
|
namespace Xylem.Common.Service.MeterProcessState
|
|
|
|
|
|
{
|
|
|
|
|
|
using System.Configuration;
|
|
|
|
|
|
|
|
|
|
|
|
public class Appsettings
|
|
|
|
|
|
{
|
2023-05-22 14:50:37 +00:00
|
|
|
|
public static string CordonelTestSpecJson => ConfigurationManager.AppSettings[nameof(CordonelTestSpecJson)];
|
|
|
|
|
|
|
2023-05-22 12:32:46 +00:00
|
|
|
|
public class ConnectionStrings
|
|
|
|
|
|
{
|
|
|
|
|
|
public static string Default => ConfigurationManager.ConnectionStrings[nameof(Default)].ConnectionString;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|