DBConstants.cs
1.76 KB
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace AIAHTML5.API.Constants
{
public class DBConstants
{
public const string GET_ALL_MODULES = "GetAllModuleStatusWithSlug";
public const string GET_USER_DELAILS_BY_LOGIN_ID = "GetUserDetailsByLoginId";
public const string GET_LICENSE_DETAILS_BY_USER_ID = "GetLicenseDetailByUserId";
public const string GET_USER_MODULES_BY_LICENSE_ID = "GetUserModulesByLicenseId";
public const string GET_USER_DETAILS_BY_EMAILID = "GetUserInfoByEmailId";
public const string UPDATE_USER_PASSWORD = "UpdateUserPassword";
public const string GET_SUBSCRIPTION_DETAILS_BY_LICENSE_ID = "GetSubscriptionDetailsByLicenseId";
public const string GET_LICENSE_DETAILS_BY_ID = "GetLicenseDetailsById";
public const string UPDATE_LICENSE_TERM_STATUS = "UpdateLicenseTermAcceptedStatus";
public const string GET_TERMS_AND_CONDITIONS = "GetTermsAndConditions";
public const string INSERT_LOGIN_DETAIL = "InsertLoginDetail";
public const string INSERT_INCORRECT_LOGIN_ATTEMPTS = "InsertIncorrectLoginAttempt";
public const string GET_INCORRECT_LOGIN_ATTEMPTS = "GetIncorrectLoginAttempt";
public const string UPDATE_INCORRECT_LOGIN_ATTEMPTS = "UpdateIncorrectLoginAttempts";
public const string DELETE_INCORRECT_LOGIN_ATTEMPTS = "DeleteIncorrectLoginAttempts";
public const string GET_ALL_LOGIN_FAILURE_CAUSES = "GetAllLoginFailureCauses";
public const string INSERT_LOGIN_ERROR_LOG = "InsertLoginErrorLog";
public const string GET_BLOCKED_USER_BY_USER_ID = "GetBlockedUserByUserId";
public const string GET_BLOCKED_USERS_BY_USER_TYPE = "GetBlockedUserByUserType";
}
}