This commit is contained in:
@@ -555,7 +555,7 @@ MULTIPLE discount / markup ITEMS
|
|||||||
// IMPORT EXPORT
|
// IMPORT EXPORT
|
||||||
//
|
//
|
||||||
|
|
||||||
public async Task<JArray> GetExportData(dataListSelectedRequest)
|
public async Task<JArray> GetExportData(DataListSelectedRequest dataListSelectedRequest)
|
||||||
{
|
{
|
||||||
//for now just re-use the report data code
|
//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
|
//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
|
||||||
|
|||||||
@@ -393,11 +393,11 @@ namespace AyaNova.Biz
|
|||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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)
|
public async Task<List<string>> ImportData(JArray ja)
|
||||||
|
|||||||
@@ -219,11 +219,11 @@ namespace AyaNova.Biz
|
|||||||
////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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);
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|||||||
@@ -377,11 +377,11 @@ namespace AyaNova.Biz
|
|||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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)
|
public async Task<List<string>> ImportData(JArray ja)
|
||||||
|
|||||||
@@ -350,11 +350,11 @@ namespace AyaNova.Biz
|
|||||||
////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Newtonsoft.Json.Linq;
|
using Newtonsoft.Json.Linq;
|
||||||
|
using AyaNova.Models;
|
||||||
namespace AyaNova.Biz
|
namespace AyaNova.Biz
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -10,7 +11,7 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
//Get items indicated in id list in exportable format
|
//Get items indicated in id list in exportable format
|
||||||
//called by ExportBiz rendering code
|
//called by ExportBiz rendering code
|
||||||
Task<JArray> GetExportData(long[] idList);
|
Task<JArray> GetExportData(DataListSelectedRequest dataListSelectedRequest);
|
||||||
const int EXPORT_DATA_BATCH_SIZE = 100;
|
const int EXPORT_DATA_BATCH_SIZE = 100;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -310,11 +310,11 @@ namespace AyaNova.Biz
|
|||||||
////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -310,11 +310,11 @@ namespace AyaNova.Biz
|
|||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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)
|
public async Task<List<string>> ImportData(JArray ja)
|
||||||
|
|||||||
@@ -358,11 +358,11 @@ namespace AyaNova.Biz
|
|||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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)
|
public async Task<List<string>> ImportData(JArray ja)
|
||||||
|
|||||||
@@ -536,11 +536,11 @@ namespace AyaNova.Biz
|
|||||||
////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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)
|
public async Task<List<string>> ImportData(JArray ja)
|
||||||
|
|||||||
@@ -322,11 +322,11 @@ namespace AyaNova.Biz
|
|||||||
////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -309,11 +309,11 @@ namespace AyaNova.Biz
|
|||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
public async Task<JArray> GetExportData(long[] idList)
|
public async Task<JArray> GetExportData(DataListSelectedRequest dataListSelectedRequest)
|
||||||
{
|
{
|
||||||
//for now just re-use the report data code
|
//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
|
//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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -305,11 +305,11 @@ namespace AyaNova.Biz
|
|||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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)
|
public async Task<List<string>> ImportData(JArray ja)
|
||||||
|
|||||||
@@ -704,11 +704,11 @@ namespace AyaNova.Biz
|
|||||||
////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -299,11 +299,11 @@ namespace AyaNova.Biz
|
|||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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)
|
public async Task<List<string>> ImportData(JArray ja)
|
||||||
|
|||||||
@@ -363,11 +363,11 @@ namespace AyaNova.Biz
|
|||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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)
|
public async Task<List<string>> ImportData(JArray ja)
|
||||||
|
|||||||
@@ -291,11 +291,11 @@
|
|||||||
// // IMPORT EXPORT
|
// // 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
|
// //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
|
// //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);
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -328,11 +328,11 @@ namespace AyaNova.Biz
|
|||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
public async Task<JArray> GetExportData(long[] idList)
|
public async Task<JArray> GetExportData(DataListSelectedRequest dataListSelectedRequest)
|
||||||
{
|
{
|
||||||
//for now just re-use the report data code
|
//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
|
//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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -320,11 +320,11 @@ namespace AyaNova.Biz
|
|||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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)
|
public async Task<List<string>> ImportData(JArray ja)
|
||||||
|
|||||||
@@ -359,11 +359,11 @@ namespace AyaNova.Biz
|
|||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
public async Task<JArray> GetExportData(long[] idList)
|
public async Task<JArray> GetExportData(DataListSelectedRequest dataListSelectedRequest)
|
||||||
{
|
{
|
||||||
//for now just re-use the report data code
|
//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
|
//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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -324,11 +324,11 @@ namespace AyaNova.Biz
|
|||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
public async Task<JArray> GetExportData(long[] idList)
|
public async Task<JArray> GetExportData(DataListSelectedRequest dataListSelectedRequest)
|
||||||
{
|
{
|
||||||
//for now just re-use the report data code
|
//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
|
//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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -343,11 +343,11 @@ namespace AyaNova.Biz
|
|||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -311,11 +311,11 @@ namespace AyaNova.Biz
|
|||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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)
|
public async Task<List<string>> ImportData(JArray ja)
|
||||||
|
|||||||
@@ -1053,11 +1053,11 @@ namespace AyaNova.Biz
|
|||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
public async Task<JArray> GetExportData(long[] idList)
|
public async Task<JArray> GetExportData(DataListSelectedRequest dataListSelectedRequest)
|
||||||
{
|
{
|
||||||
//for now just re-use the report data code
|
//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
|
//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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -341,11 +341,11 @@ namespace AyaNova.Biz
|
|||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
public async Task<JArray> GetExportData(long[] idList)
|
public async Task<JArray> GetExportData(DataListSelectedRequest dataListSelectedRequest)
|
||||||
{
|
{
|
||||||
//for now just re-use the report data code
|
//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
|
//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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -402,11 +402,11 @@ namespace AyaNova.Biz
|
|||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
public async Task<JArray> GetExportData(long[] idList)
|
public async Task<JArray> GetExportData(DataListSelectedRequest dataListSelectedRequest)
|
||||||
{
|
{
|
||||||
//for now just re-use the report data code
|
//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
|
//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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -863,11 +863,11 @@ namespace AyaNova.Biz
|
|||||||
// IMPORT EXPORT
|
// 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
|
//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
|
//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)
|
// public async Task<List<string>> ImportData(JArray ja)
|
||||||
|
|||||||
Reference in New Issue
Block a user