Exemplo n.º 1
0
 public Catalog(
     IInMemoryCollection <T> collection,
     IDataSourceCRUD <T> source,
     List <PersistencyOperations> supportedOperations,
     KeyManagementStrategyType keyManagementStrategy = KeyManagementStrategyType.CollectionDecides)
     : base(collection, source, supportedOperations, keyManagementStrategy)
 {
 }
Exemplo n.º 2
0
 protected Catalog(
     IInMemoryCollection <T> collection,
     IDataSourceCRUD <TDTO> source,
     List <PersistencyOperations> supportedOperations)
 {
     _collection          = collection;
     _source              = source;
     _supportedOperations = supportedOperations;
 }
Exemplo n.º 3
0
 protected CatalogFull(
     IInMemoryCollection <T> collection,
     IDataSourceCRUD <TPersistentData> source,
     List <PersistencyOperations> supportedOperations,
     KeyManagementStrategyType keyManagementStrategy = KeyManagementStrategyType.CollectionDecides)
 {
     _collection            = collection;
     _source                = source;
     _supportedOperations   = supportedOperations;
     _keyManagementStrategy = keyManagementStrategy;
 }