mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-07 08:26:11 +00:00
7 lines
156 B
C#
7 lines
156 B
C#
public class App {
|
|
public static void Main() {
|
|
IRepository repo = new SqlRepository();
|
|
repo.Find(1);
|
|
repo.Save("test");
|
|
}
|
|
}
|