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.
24 lines
581 B
24 lines
581 B
using Volo.Abp.DependencyInjection;
|
|
using Volo.Abp.Guids;
|
|
|
|
namespace MyCompanyName.MyProjectName
|
|
{
|
|
public class MyProjectNameTestDataBuilder : ITransientDependency
|
|
{
|
|
private readonly IGuidGenerator _guidGenerator;
|
|
private MyProjectNameTestData _testData;
|
|
|
|
public MyProjectNameTestDataBuilder(
|
|
IGuidGenerator guidGenerator,
|
|
MyProjectNameTestData testData)
|
|
{
|
|
_guidGenerator = guidGenerator;
|
|
_testData = testData;
|
|
}
|
|
|
|
public void Build()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |