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, IXWebinarSeeder { public XWebinarSeederBase( string entity, string database, IXWebinarRepository repository, XDataServiceConfiguration dataServiceConfiguration ) : base( entity, database, repository, dataServiceConfiguration ) { } } }