mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-07 08:26:11 +00:00
4 lines
88 B
C#
4 lines
88 B
C#
public interface IRepository {
|
|
string Find(int id);
|
|
bool Save(string entity);
|
|
}
|