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