Adding of archive items is mostly operational. Need to handle file upload
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OpenArchival.Database;
|
||||
|
||||
public interface IArtifactAssociatedNamesProvider
|
||||
{
|
||||
public Task<bool> ContainsName(string name);
|
||||
|
||||
public Task<bool> InsertName(string name);
|
||||
|
||||
public Task<bool> RemoveName(string name);
|
||||
|
||||
public Task<IEnumerable<string>> SearchNames(string query);
|
||||
|
||||
public Task<IEnumerable<string>> TopNames(int resultCount);
|
||||
}
|
||||
Reference in New Issue
Block a user