You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
711 B
26 lines
711 B
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Logging.Abstractions;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Data;
|
|
using Volo.Abp.DependencyInjection;
|
|
using Volo.Abp.MultiTenancy;
|
|
|
|
namespace LINGYUN.Abp.MicroService.AIService;
|
|
public class AIServiceDataSeeder : ITransientDependency
|
|
{
|
|
protected ILogger<AIServiceDataSeeder> Logger { get; }
|
|
protected ICurrentTenant CurrentTenant { get; }
|
|
|
|
public AIServiceDataSeeder(
|
|
ICurrentTenant currentTenant)
|
|
{
|
|
CurrentTenant = currentTenant;
|
|
|
|
Logger = NullLogger<AIServiceDataSeeder>.Instance;
|
|
}
|
|
|
|
public virtual Task SeedAsync(DataSeedContext context)
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|
|
|