using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RealTimeGraphX.Controllers { /// /// A simple implementation of . /// /// The type of the graph data series. /// The type of the x-axis data point. /// The type of the y-axis data point. /// public class GraphController : GraphControllerBase where XDataPoint : GraphDataPointBase where YDataPoint : GraphDataPointBase where TDataSeries : IGraphDataSeries { } }