Hospital Management internal project. Build with Abp.io architecture.
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.

15 lines
380 B

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