临河任务调度
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.

16 lines
355B

  1. using System.Threading.Tasks;
  2. using Volo.Abp.Data;
  3. using Volo.Abp.DependencyInjection;
  4. namespace Acme.BookStore;
  5. public class BookStoreTestDataSeedContributor : IDataSeedContributor, ITransientDependency
  6. {
  7. public Task SeedAsync(DataSeedContext context)
  8. {
  9. /* Seed additional test data... */
  10. return Task.CompletedTask;
  11. }
  12. }