blob: 28ad56ed38bd5ea725b98fb6dda88e56ab4542f9 (
plain)
1
2
3
4
5
6
7
8
9
|
namespace Marina.DataAccess {
public interface IIdentityMap< T > {
void Add( T domainObject );
bool ContainsObjectWithIdOf( long idOfObjectToFind );
T FindObjectWithIdOf( long idOfObjectToFind );
}
}
|