This commit is contained in:
2026-05-28 07:34:12 +03:30
parent 172f0806f2
commit 49e3f0af7b
-24
View File
@@ -1,24 +0,0 @@
using xDataService.Configuration;
using xDataService.Interfaces;
using xDataService.Providers;
using xStringService.Interfaces;
using xStringService.Models.Entities;
namespace xStringService.Providers.Entities
{
public abstract class XStringSeederBase : XBaseDbSeeder<XString, int>, IXStringSeeder
{
protected XStringSeederBase(
string entity,
string database,
IXBaseRepository<XString, int> repository,
XDataServiceConfiguration dataServiceConfiguration
) : base(
entity,
database,
repository,
dataServiceConfiguration
)
{ }
}
}