public bool TryAddMapExport(MapIdentity mapIdentity, string path) { try { _dbOperator.AddMapExport(mapIdentity, path); return(true); } catch (Exception ex) { Notification.Push($"Error while removing collection: {ex.Message}"); return(false); } }