refactor and add using constants instead of hard coded strings ...

This commit is contained in:
2026-07-30 14:26:12 +03:30
parent 3d5f2c4953
commit 01c2a04977
7 changed files with 43 additions and 11 deletions
+23
View File
@@ -0,0 +1,23 @@
using xDataService.Configuration;
using xDataService.Providers;
using xStringService.Interfaces.Entities;
using xStringService.Models.Entities;
namespace xStringService.Providers.Entities
{
public abstract class XStringSeederBase : XBaseDbSeeder<XString, int>, IXStringSeeder
{
protected XStringSeederBase(
string entity,
string database,
IXStringRepository repository,
XDataServiceConfiguration dataServiceConfiguration
) : base(
entity,
database,
repository,
dataServiceConfiguration
)
{ }
}
}