12 lines
286 B
C#
12 lines
286 B
C#
|
|
namespace JiShe.IOT
|
||
|
|
{
|
||
|
|
public class IOTTestDataSeedContributor : IDataSeedContributor, ITransientDependency
|
||
|
|
{
|
||
|
|
public Task SeedAsync(DataSeedContext context)
|
||
|
|
{
|
||
|
|
/* Seed additional test data... */
|
||
|
|
|
||
|
|
return Task.CompletedTask;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|