This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IFetchThings<T> where T : Fetched, IFetchable, System.IComparable<T>, new() { | |
... | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IFetchThings<T> { | |
T Fetch(); | |
} | |
public interface ISecureFetchThings<T> : IFetchThings<T> { | |
T Fetch(); | |
bool isLoggedOn(); | |
void logOn(); | |
} |
OlderNewer