25 lines
681 B
C#
25 lines
681 B
C#
using System;
|
|
using xDataService.Configuration;
|
|
using xDataService.Providers;
|
|
using xWebinarService.Interfaces;
|
|
using xWebinarService.Interfaces.Entities;
|
|
using xWebinarService.Models.Entities;
|
|
|
|
namespace xWebinarService.Providers
|
|
{
|
|
public abstract class XWebinarSeederBase : XBaseDbSeeder<XWebinar, Guid>, IXWebinarSeeder
|
|
{
|
|
public XWebinarSeederBase(
|
|
string entity,
|
|
string database,
|
|
IXWebinarRepository repository,
|
|
XDataServiceConfiguration dataServiceConfiguration
|
|
) : base(
|
|
entity,
|
|
database,
|
|
repository,
|
|
dataServiceConfiguration
|
|
)
|
|
{ }
|
|
}
|
|
} |