using MuchInfo.Chart.Data.EnumTypes; using MuchInfo.Chart.WPF.Primitives; using System.Collections.Generic; using System.Windows; using System.Windows.Input; namespace MuchInfo.Chart.App.Services { /// /// Interface IDataService /// public interface IDataService { /// /// Gets the data set. /// /// The symbol. /// The type. /// The count. /// ChartDataSet. ChartDataSet GetDataSet(string symbol, CycleType type, int count); Dictionary GetLanguages(); List GetVisibilities(); List GetDrawingToolPositions(); List GetDrawingToolTypes(); List GetLinePlotTypes(); List GetIndicatorTypes(); List GetCycleTypes(); List GetModifierKeys(); } }