update<E extends Entity> method
Implementation
void update<E extends Entity>(RepositoryScope scope, E entity) {
if (_scopes[scope] == null) throw _entityNotFound;
_scopes[scope] = entity;
}
void update<E extends Entity>(RepositoryScope scope, E entity) {
if (_scopes[scope] == null) throw _entityNotFound;
_scopes[scope] = entity;
}