mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-07 08:26:11 +00:00
11 lines
277 B
C#
11 lines
277 B
C#
public class SqlRepository : IRepository {
|
|
public string Find(int id) {
|
|
return "found-by-id";
|
|
}
|
|
public string Find(string name, bool exact) {
|
|
return "found-by-name";
|
|
}
|
|
public void Save(string data) {
|
|
Console.WriteLine(data);
|
|
}
|
|
}
|