Interface IDataStore<T, TMarker>
- Namespace
- Savvyio.Extensions.DependencyInjection.Data
- Assembly
- Savvyio.Extensions.DependencyInjection.dll
Defines a generic way to support multiple implementations of data persistence based on the Data Access Object pattern aka DAO.
public interface IDataStore<in T, TMarker> : IDataStore<T>, IDependencyInjectionMarker<TMarker> where T : class
Type Parameters
TThe type of the DTO.
TMarkerThe type used to mark the implementation that this data access object represents. Optimized for Microsoft Dependency Injection.
See Also
IDataStore<T, TMarker>
IDependencyInjectionMarker<TMarker>