MoveCommand

This commit is contained in:
2023-07-04 22:07:11 +02:00
parent 718fd53026
commit 453834646b
17 changed files with 263 additions and 22 deletions

View File

@@ -24,12 +24,4 @@ public class LocalItemDeleter : IItemDeleter<ILocalContentProvider>
return Task.CompletedTask;
}
public async Task DeleteAsync(IContentProvider contentProvider, FullName fullName)
{
var localContentProvider = contentProvider as ILocalContentProvider;
if (localContentProvider is null) throw new ArgumentException("Content provider is not a local content provider", nameof(contentProvider));
await DeleteAsync(localContentProvider, fullName);
}
}