protected override void Context()
        {
            base.Context();

              TestType = new SaltedEncryptedString();
              Encryptor = new CryptographyFactory().CreateEncryptor();
        }
        protected override void Context()
        {
            base.Context();

              TestType = new SaltedEncryptedString();
              Decryptor = new CryptographyFactory().CreateDecryptor();

              CurrentSession.Save(UnpersistedEntity);
        }
 public void SetUp()
 {
     TestType = new SaltedEncryptedString();
 }