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

21 lines
546 B
C#

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