public DiscoveryAction(IActionQueueMarshaller marshaller, EventHandler<ActionEventArgs> statusUpdate, List<IProtectAttachment> attachments, bool isEncryptedCollection = false) : base(marshaller, statusUpdate) { Execute(attachments, isEncryptedCollection); }
public UpdateDiscoveryAction(IActionQueueMarshaller marshaller, EventHandler<ActionEventArgs> statusUpdate, ObservableCollection<IProtectAttachment> attachments) : base(marshaller, statusUpdate) { Execute(attachments); }
public DecryptionAction(IActionQueueMarshaller marshaller, EventHandler<ActionEventArgs> statusUpdate, IProtectAttachment attachment, IContentEncryptionUi ui) : base(marshaller, statusUpdate) { Execute(attachment, ui); }
public RemoveAttachmentsAction(IActionQueueMarshaller marshaller, ObservableCollection<IProtectAttachment> attachments, string recordKey, string id) : base(marshaller, null) { RemoveAttachment(attachments, recordKey, id); }
public ApplyAction(IActionQueueMarshaller marshaller, EventHandler<ActionEventArgs> statusUpdate, IEnumerable<IWorkshareTask> tasks) : base(marshaller, statusUpdate) { InternalApplyTasks(tasks); }