using System; using xAiModels.Interfaces.Entities; using xAiModels.Models.Entities; using xDataService.Configuration; using xDataService.Providers; namespace xAiModels.Providers.Entities { public abstract class XAiConversationSeederBase : XBaseDbSeeder, IXAiConversationSeeder { protected XAiConversationSeederBase( string entity, string database, IXAiConversationRepository repository, XDataServiceConfiguration dataServiceConfiguration ) : base( entity, database, repository, dataServiceConfiguration ) { } } }