| 12345678910111213141516171819202122232425262728293031323334353637383940 |
-
- 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
- {
- /// <summary>
- /// Interface IDataService
- /// </summary>
- public interface IDataService
- {
- /// <summary>
- /// Gets the data set.
- /// </summary>
- /// <param name="symbol">The symbol.</param>
- /// <param name="type">The type.</param>
- /// <param name="count">The count.</param>
- /// <returns>ChartDataSet.</returns>
- ChartDataSet GetDataSet(string symbol, CycleType type, int count);
- Dictionary<ChartLanguageType, string> GetLanguages();
- List<Visibility> GetVisibilities();
- List<DrawingToolPositionType> GetDrawingToolPositions();
- List<DrawingToolType> GetDrawingToolTypes();
- List<LinePlotType> GetLinePlotTypes();
- List<string> GetIndicatorTypes();
- List<CycleType> GetCycleTypes();
- List<ModifierKeys> GetModifierKeys();
- }
- }
|