25 lines
657 B
C#
25 lines
657 B
C#
using System;
|
|
using xDataService.Configuration;
|
|
using xDataService.Providers;
|
|
using xFileService.Interfaces;
|
|
using xFileService.Interfaces.Entities;
|
|
using xFileService.Models.Entities;
|
|
|
|
namespace xFileService.Providers
|
|
{
|
|
public abstract class XFileSeederBase : XBaseDbSeeder<XFile, Guid>, IXFileSeeder
|
|
{
|
|
protected XFileSeederBase(
|
|
string entity,
|
|
string database,
|
|
IXFileRepository repository,
|
|
XDataServiceConfiguration dataServiceConfiguration
|
|
) : base(
|
|
entity,
|
|
database,
|
|
repository,
|
|
dataServiceConfiguration
|
|
)
|
|
{ }
|
|
}
|
|
} |