17 lines
357 B
C#
17 lines
357 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
using Volo.Abp.Data;
|
|||
|
|
using Volo.Abp.DependencyInjection;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Platform;
|
|||
|
|
|
|||
|
|
public class PlatformTestDataSeedContributor : IDataSeedContributor, ITransientDependency
|
|||
|
|
{
|
|||
|
|
public Task SeedAsync(DataSeedContext context)
|
|||
|
|
{
|
|||
|
|
/* Seed additional test data... */
|
|||
|
|
|
|||
|
|
return Task.CompletedTask;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|