private void ShowExportedCsv(Guid entryId) { var entry = ExportLog.Where(l => l.Id == entryId).Single(); Process.Start(entry.Path); }
private void DeleteEntry(Guid entryId) { var entry = ExportLog.Where(l => l.Id == entryId).Single(); ExportLog.Remove(entry); }