24 lines
651 B
C#
24 lines
651 B
C#
using System;
|
|
using xAiModels.Interfaces.Entities;
|
|
using xAiModels.Models.Entities;
|
|
using xDataService.Configuration;
|
|
using xDataService.Providers;
|
|
|
|
namespace xAiModels.Providers.Entities
|
|
{
|
|
public abstract class XAiMessageSeederBase : XBaseDbSeeder<XAiMessage, Guid>, IXAiMessageSeeder
|
|
{
|
|
protected XAiMessageSeederBase(
|
|
string entity,
|
|
string database,
|
|
IXAiMessageRepository repository,
|
|
XDataServiceConfiguration dataServiceConfiguration
|
|
) : base(
|
|
entity,
|
|
database,
|
|
repository,
|
|
dataServiceConfiguration
|
|
)
|
|
{ }
|
|
}
|
|
} |