using System; using xDataService.Configuration; using xDataService.Providers; using xFileService.Interfaces.Entities; using xFileService.Models.Entities; namespace xFileService.Providers.Entities { public abstract class XFileSeederBase : XBaseDbSeeder, IXFileSeeder { protected XFileSeederBase( string entity, string database, IXFileRepository repository, XDataServiceConfiguration dataServiceConfiguration ) : base( entity, database, repository, dataServiceConfiguration ) { } } }