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