Started implementing backend
This commit is contained in:
14
Logic/IPasswordStoreService.cs
Normal file
14
Logic/IPasswordStoreService.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Models;
|
||||
|
||||
namespace Logic;
|
||||
|
||||
public interface IPasswordStoreService
|
||||
{
|
||||
IEnumerable<PasswordStore> GetAll();
|
||||
PasswordStore Get(uint ID);
|
||||
int Delete(uint ID);
|
||||
int Delete(PasswordStore item);
|
||||
int Create(string path, string? displayName = null, string? iconName = null);
|
||||
int Create(PasswordStore item);
|
||||
int Edit(uint ID, PasswordStore newItem);
|
||||
}
|
||||
Reference in New Issue
Block a user