public static string Decryprt(string cypherText)
 {
     return(Statics.Decrypt(cypherText, ENCRIPTION_PHRASE));
 }
        //static string ENCRIPTION_PHRASE = ConfigurationManager.AppSettings["Encription_Phrase"];

        public static string Encrypt(string plainText)
        {
            return(Statics.Encrypt(plainText, ENCRIPTION_PHRASE));
        }