public static object GetSystemConfig(string _name)
    {
        SQLServerDBHelper db      = new SQLServerDBHelper("EsignDB");
        string            tempSQL = "SELECT Value FROM SystemConfig WHERE Name='" + _name + "'";

        return(db.GetSingleValueSelect(tempSQL));
    }
        public int getTotalRecord(string _languageId)
        {
            int               total   = 0;
            string            tempStr = "SELECT count(*) FROM Resources WHERE languageId='" + _languageId + "'";
            SQLServerDBHelper db      = new SQLServerDBHelper("EsignDB");
            string            value   = db.GetSingleValueSelect(tempStr);

            try { total = Int16.Parse(value); } catch (Exception exc) { }
            return(total);
        }
    /// <summary>
    /// Lấy giá trị string của resource theo ngôn ngữ chỉ định.
    /// Các giá trị này được lưu trong database tb_Resource
    /// </summary>
    /// <param name="_resourceId">Mã resource. VD: Home.LabelLanguage; Account.Username; Account.Password; ...</param>
    /// <param name="_languageId">Mã ngôn ngữ cần lấy giá trị. Tiếng Anh: en, Tiếng Việt: vi, Tiếng Trung: zh</param>
    /// <returns> Giá trị text  </returns>
    public static string GetResource(string _resourceId, string _languageId, bool _notFoundAdd = false)
    {
        string value = _resourceId;

        if (_notFoundAdd)
        {
            value = _languageId + "." + value;
        }
        SQLServerDBHelper db      = new SQLServerDBHelper("EsignDB");
        string            tempStr = "SELECT resourceValue FROM Resources WHERE languageId='" + _languageId + "' AND resourceName='" + _resourceId + "'";

        tempStr = db.GetSingleValueSelect(tempStr);
        if (!string.IsNullOrWhiteSpace(tempStr))
        {
            value = tempStr;
        }
        return(value);
    }