last ...
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using xDataService.Configuration;
|
||||
using xDataService.Providers;
|
||||
using xServices.Interfaces;
|
||||
using xServices.Models.Entities;
|
||||
|
||||
namespace xServices.Providers
|
||||
{
|
||||
public class XTestSeeder : XBaseDbSeeder<XTest, Guid>, IXTestSeeder
|
||||
{
|
||||
public XTestSeeder(
|
||||
IXTestRepository repository,
|
||||
XDataServiceConfiguration dataServiceConfiguration
|
||||
) : base(
|
||||
database: "xApiDb",
|
||||
entity: nameof(XTest),
|
||||
repository: repository,
|
||||
dataServiceConfiguration: dataServiceConfiguration
|
||||
)
|
||||
{ }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user