blob: 72ee0658d6f6c9930c03c0147ba69922f05950a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PPC.Shared.Statistics;
namespace Tango.FSE.Common.Statistics
{
public interface IStatisticsProvider
{
event EventHandler<JobRunReceivedEventArgs> JobRunReceived;
Task<RequiredFiltersData> GetRequiredFiltersData();
Task<StatisticsModel> GetStatistics(Filters filters);
Task<JobRunExtendedInfo> GetJobRunExtendedInfo(int jobRunID);
}
}
|