mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-07 08:26:11 +00:00
9 lines
174 B
C#
9 lines
174 B
C#
public class SqlRepository : IRepository {
|
|
public string Find(int id) {
|
|
return "found";
|
|
}
|
|
|
|
public bool Save(string entity) {
|
|
return true;
|
|
}
|
|
}
|