mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-11 22:53:04 +00:00
8 lines
175 B
C#
8 lines
175 B
C#
public class App {
|
|
public void Run() {
|
|
var repo = new SqlRepository();
|
|
repo.Find(42);
|
|
repo.Find("alice", true);
|
|
repo.Save("test");
|
|
}
|
|
}
|