Renamed service
This commit is contained in:
13
src/Logic/ICollectionsService.cs
Normal file
13
src/Logic/ICollectionsService.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Models;
|
||||
|
||||
namespace Logic;
|
||||
|
||||
public interface ICollectionsService
|
||||
{
|
||||
IEnumerable<PasswordStore> GetAll();
|
||||
PasswordStore Get(uint ID);
|
||||
void Delete(uint ID);
|
||||
void Delete(PasswordStore item);
|
||||
bool Create(PasswordStore item);
|
||||
void Edit(uint ID, PasswordStore newItem);
|
||||
}
|
||||
Reference in New Issue
Block a user