Files
raven/server/AyaNova/biz/IReportAbleObject.cs
2020-08-26 23:09:23 +00:00

18 lines
426 B
C#

using AyaNova.Models;
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);
}
}