Exemplo n.º 1
0
        public EncryptionView()
        {
            this.InitializeComponent();

            this.encryptionEvents     = new EncryptionEvents(this);
            this.encryptionController = new Controllers.EncryptionController(new Controllers.Services.EncryptionService());
            this.loggingEvents        = new LoggingEvents(this.encryptionEvents);
            this.encryptionMode       = true;
        }
Exemplo n.º 2
0
 public LoggingEvents(IEncryptionEvents encryptionEvents)
 {
     this.encryptionEvents = encryptionEvents;
 }