using xDataService.Configuration; using xDataService.Providers; using xWebinarService.Interfaces.Entities; using xWebinarService.Models.Entities; namespace xWebinarService.Providers.Entities { public abstract class XWebinarSubscriberSeederBase : XBaseDbSeeder, IXWebinarSubscriberSeeder { public XWebinarSubscriberSeederBase( string entity, string database, IXWebinarSubscriberRepository repository, XDataServiceConfiguration dataServiceConfiguration ) : base( entity, database, repository, dataServiceConfiguration ) { } } }