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

4 lines
88 B
C#

public interface IRepository {
string Find(int id);
bool Save(string entity);
}