Files
raven/server/AyaNova/biz/IExportAbleObject.cs
2021-12-28 00:44:27 +00:00

21 lines
542 B
C#

using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
using AyaNova.Models;
using System;
namespace AyaNova.Biz
{
/// <summary>
/// Interface for biz objects that support exporting
/// </summary>
internal interface IExportAbleObject
{
//Get items indicated in id list in exportable format
//called by ExportBiz rendering code
Task<JArray> GetExportData(DataListSelectedRequest dataListSelectedRequest, Guid jobId);
const int EXPORT_DATA_BATCH_SIZE = 100;
}
}