mirror of https://github.com/abpframework/abp
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.
34 lines
1.1 KiB
34 lines
1.1 KiB
using System;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Data;
|
|
using Volo.Abp.DependencyInjection;
|
|
using Volo.Abp.Domain.Repositories;
|
|
using Volo.Abp.Guids;
|
|
|
|
namespace Acme.BookStore
|
|
{
|
|
public class BookStoreTestDataSeedContributor : IDataSeedContributor, ITransientDependency
|
|
{
|
|
private readonly IRepository<Book, Guid> _bookRepository;
|
|
private readonly IGuidGenerator _guidGenerator;
|
|
|
|
public BookStoreTestDataSeedContributor(
|
|
IRepository<Book, Guid> bookRepository,
|
|
IGuidGenerator guidGenerator)
|
|
{
|
|
_bookRepository = bookRepository;
|
|
_guidGenerator = guidGenerator;
|
|
}
|
|
|
|
public async Task SeedAsync(DataSeedContext context)
|
|
{
|
|
await _bookRepository.InsertAsync(
|
|
new Book(_guidGenerator.Create(), "Test book 1", BookType.Fantastic, new DateTime(2015, 05, 24), 21)
|
|
);
|
|
|
|
await _bookRepository.InsertAsync(
|
|
new Book(_guidGenerator.Create(), "Test book 2", BookType.Science, new DateTime(2014, 02, 11), 15)
|
|
);
|
|
}
|
|
}
|
|
} |