21 lines
647 B
C#
21 lines
647 B
C#
using xDataService.Configuration;
|
|
using xDataService.Providers;
|
|
using xStringService.Interfaces.Entities;
|
|
using xStringService.Models.Entities;
|
|
|
|
namespace xStringService.Providers.Entities
|
|
{
|
|
public class XStringInMemoryRepository : XBaseInMemoryRepository<XString, int>, IXStringRepository
|
|
{
|
|
public XStringInMemoryRepository(
|
|
XDataServiceConfiguration configuration,
|
|
IXStringKeyGenerator keyGenerator = null,
|
|
IXStringRepositoryEvents baseRepositoryEvents = null
|
|
) : base(
|
|
configuration,
|
|
keyGenerator,
|
|
baseRepositoryEvents
|
|
)
|
|
{ }
|
|
}
|
|
} |