This commit is contained in:
2020-10-26 20:42:16 +00:00
parent b88636ad3e
commit b18a87bdf5
6 changed files with 216 additions and 47 deletions

View File

@@ -325,9 +325,13 @@ namespace AyaNova.Biz
return await GetReportData(idList);
}
public Task ImportData(JArray ja)
public async Task ImportData(JArray ja)
{
throw new NotImplementedException();
foreach (JObject j in ja)
{
var w = j.ToObject<Widget>();
await CreateAsync(w);
}
}