Started implementing backend
This commit is contained in:
10
Repository/IRepository.cs
Normal file
10
Repository/IRepository.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.Collections;
|
||||
|
||||
namespace Repository;
|
||||
|
||||
public interface IRepository
|
||||
{
|
||||
IEnumerable ReadAll();
|
||||
void WriteAll(IEnumerable items);
|
||||
object Get(uint id);
|
||||
}
|
||||
Reference in New Issue
Block a user