22 lines
565 B
C#
22 lines
565 B
C#
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
|
|
)
|
|
{ }
|
|
}
|
|
} |