Files
raven/server/AyaNova/biz/IReportAbleObject.cs
2020-09-01 22:08:47 +00:00

18 lines
452 B
C#

using System.Threading.Tasks;
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(long[] idList);
const int REPORT_DATA_BATCH_SIZE = 100;
}
}