87 lines
2.9 KiB
C#
87 lines
2.9 KiB
C#
using AyCode.Core.Consts;
|
|
using AyCode.Core.Loggers;
|
|
|
|
namespace TIAM.Core.Consts;
|
|
|
|
public static class TiamConstClient
|
|
{
|
|
public static string DefaultLocale = "en-US";
|
|
public static Guid TransferProductId = Guid.Parse("814b5495-c2e9-4f1d-a73f-37cd5d353078");
|
|
public static Guid[] DevAdminIds = new Guid[2] { Guid.Parse("dcf451d2-cc4c-4ac2-8c1f-da00041be1fd"), Guid.Parse("4cbaed43-2465-4d99-84f1-c8bc6b7025f7") };
|
|
public static Guid[] SysAdmins = new Guid[3]
|
|
{
|
|
Guid.Parse("dcf451d2-cc4c-4ac2-8c1f-da00041be1fd"),
|
|
Guid.Parse("4cbaed43-2465-4d99-84f1-c8bc6b7025f7"),
|
|
Guid.Parse("540271f6-c604-4c16-8160-d5a7cafedf00")
|
|
};
|
|
public static Dictionary<string, Guid> SysAccounts = new Dictionary<string, Guid>
|
|
{
|
|
{ "SystemEmailSender", Guid.Parse("5e13e051-4fd6-4a30-a371-75cc785cfb84")},
|
|
};
|
|
|
|
public static string WelcomeEmailTemplateName = "WelcomeEmailTemplate";
|
|
public static string NewTransferEmailTemplateName = "NewTransferEmailTemplate";
|
|
public static string TransferModifiedEmailTemplateName = "TramsferModifiedEmailTemplate";
|
|
public static string ForgotPasswordEmailTemplateName = "ForgotPasswordEmailTemplate";
|
|
public static string GeneralEmailTemplateName = "GeneralEmailTemplate";
|
|
|
|
public static List<string> WelcomeEmailParameters = new List<string>()
|
|
{
|
|
"UserName",
|
|
"SettingBaseUrl",
|
|
"UserId",
|
|
"Token"
|
|
};
|
|
|
|
public static List<string> ForgotPasswordEmailParameters = new List<string>()
|
|
{
|
|
//string userName, string settingBaseUrl, string userId, string token
|
|
"UserName",
|
|
"SettingBaseUrl",
|
|
"UserId",
|
|
"Token"
|
|
};
|
|
|
|
public static List<string> NewTransferEmailParameters = new List<string>()
|
|
{
|
|
//string userName, string fromAddress, string toAddress, string appointment,
|
|
//string fullname,string passengerCount, string luggageCount, string settingBaseUrl, string transferId
|
|
"UserName",
|
|
"FromAddress",
|
|
"ToAddress",
|
|
"Appointment",
|
|
"FullName",
|
|
"PassengerCount",
|
|
"LuggageCount",
|
|
"SettingBaseUrl",
|
|
"TransferId"
|
|
};
|
|
|
|
public static List<string> GeneralEmailParameters = new List<string>()
|
|
{
|
|
//string userName, string settingBaseUrl, string userId, string token
|
|
"UserName",
|
|
"MessageBody",
|
|
"SettingBaseUrl",
|
|
"UserId"
|
|
};
|
|
|
|
#if RELEASE
|
|
public static string SystemEmailAddress = "test@touriam.com";
|
|
public static LogLevel DefaultLogLevelClient = LogLevel.Debug;
|
|
#else
|
|
public static string SystemEmailAddress = "test@touriam.com";
|
|
public static LogLevel DefaultLogLevelClient = LogLevel.Detail;
|
|
#endif
|
|
}
|
|
|
|
public class TiamConst : AcConst
|
|
{
|
|
public static string ProjectIdString = "684f34d1-163a-4077-918f-a9d9df5ce789";
|
|
|
|
static TiamConst()
|
|
{
|
|
ProjectId = Guid.Parse(ProjectIdString);
|
|
ProjectSalt = GenerateProjectSalt(ProjectId.ToString("N"));
|
|
}
|
|
} |