Prepare xStringService except Controllers ...

This commit is contained in:
2026-05-24 22:46:25 +03:30
parent b44c014de8
commit 30b3e80a8d
9 changed files with 433 additions and 34 deletions
@@ -0,0 +1,21 @@
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
)
{ }
}
}