2025-05-06 06:45:49 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Volo.Abp.Data;
|
|
|
|
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
|
|
|
2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Platform;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
|
|
|
|
|
public class PlatformTestDataSeedContributor : IDataSeedContributor, ITransientDependency
|
|
|
|
|
|
{
|
|
|
|
|
|
public Task SeedAsync(DataSeedContext context)
|
|
|
|
|
|
{
|
|
|
|
|
|
/* Seed additional test data... */
|
|
|
|
|
|
|
|
|
|
|
|
return Task.CompletedTask;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|