GitNexus/gitnexus/test/fixtures/lang-resolution/csharp-interface-dispatch/SqlRepository.cs

9 lines
174 B
C#

public class SqlRepository : IRepository {
public string Find(int id) {
return "found";
}
public bool Save(string entity) {
return true;
}
}