10 lines
172 B
C#
10 lines
172 B
C#
using System.Collections;
|
|
|
|
namespace Repository;
|
|
|
|
public interface IRepository
|
|
{
|
|
IEnumerable ReadAll();
|
|
void WriteAll(IEnumerable items);
|
|
object Get(uint id);
|
|
} |