Add Db Seeder ...

This commit is contained in:
2026-05-11 23:23:37 +03:30
parent ac462bd7a7
commit 5385691047
3 changed files with 34 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
using xDataService.Configuration;
using xDataService.Interfaces;
using xDataService.Providers;
using xServices.Interfaces;
using xServices.Models.Entities;
namespace xServices.Providers
{
public class XTestDbSeeder : XBaseDbSeeder<XTest, Guid>, IXTestDbSeeder
{
public XTestDbSeeder(
IXBaseRepository<XTest, Guid> repository,
XDataServiceConfiguration dataServiceConfiguration
) : base(
"xApiDb",
repository,
dataServiceConfiguration
)
{ }
}
}