This commit is contained in:
2021-06-23 20:07:55 +00:00
parent 6927412ca8
commit 268c5deb28
27 changed files with 53 additions and 52 deletions

View File

@@ -393,11 +393,11 @@ namespace AyaNova.Biz
// IMPORT EXPORT
//
public async Task<JArray> GetExportData(long[] idList)
public async Task<JArray> GetExportData(DataListSelectedRequest dataListSelectedRequest)
{
//for now just re-use the report data code
//this may turn out to be the pattern for most biz object types but keeping it seperate allows for custom usage from time to time
return await GetReportData(idList);
return await GetReportData(dataListSelectedRequest);
}
public async Task<List<string>> ImportData(JArray ja)