15 lines
355 B
C#
15 lines
355 B
C#
using System.Threading.Tasks;
|
|
using Volo.Abp.Data;
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
namespace KonSoft.Dispatch;
|
|
|
|
public class DispatchTestDataSeedContributor : IDataSeedContributor, ITransientDependency
|
|
{
|
|
public Task SeedAsync(DataSeedContext context)
|
|
{
|
|
/* Seed additional test data... */
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
} |