using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.DispenserAnalyzer.UI.Models; namespace Tango.DispenserAnalyzer.UI.Analysis { [Analyzer("BaseInterface")] public interface IBaseAnalyzer { } [Analyzer("INTERFACE")] public interface IAnalyzer: IBaseAnalyzer { IReader Reader { get; set; } Task> Process(List csvRows, bool backgroundMode); void GetPoints(List samples, IList points); bool ShowChartAfterProcess { get; } bool AvailableCompareResults { get; } } [Analyzer("DISPENSERINTERFACE")] public interface IDispenserDispenserAnalyser : IAnalyzer { } [Analyzer("PROCESSINTERFACE")] public interface IProcessAnalyzer : IAnalyzer { } }