private string Encrypt(string clearText)
 {
     return(EntityHelper.Encrypt(clearText));
 }
 private string Decrypt(string cipherText)
 {
     return(EntityHelper.Decrypt(cipherText));
 }