Refactorisation of deletion

This commit is contained in:
2021-09-05 17:10:50 +01:00
parent 6dd76ac1a5
commit 95aae91156
6 changed files with 33 additions and 21 deletions

View File

@ -1,6 +1,7 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using isnd.Controllers;
using isnd.Data;
using isnd.Data.Catalog;
using isnd.Services;
using isnd.ViewModels;
@ -19,6 +20,7 @@ namespace isnd.Interfaces
IEnumerable<Resource> GetResources(IUnleash unleashĈlient);
void ÛpdateCatalogFor(Commit commit);
Task<PackageDeletionReport> DeletePackageAsync(string pkgId, string fullVersion, string pkgType);
Task<PackageVersion> GetPackageAsync(string pkgid, string version, string type);
}
}