Revize cb0b7cb9
Přidáno uživatelem Alex Konig před téměř 4 roky(ů)
Server/ServerApp/Parser/Parsers/CsvParser.cs | ||
---|---|---|
1 | 1 |
using Parser.OutputInfo; |
2 |
using ServerApp.Parser.InputData; |
|
3 |
using ServerApp.Parser.OutputInfo; |
|
4 |
using ServerApp.Parser.Parsers; |
|
2 | 5 |
using System; |
3 | 6 |
using System.Collections.Generic; |
4 | 7 |
using System.Globalization; |
... | ... | |
15 | 18 |
LogInParser loginParser; |
16 | 19 |
|
17 | 20 |
public List<WeatherInfo> weatherList; |
18 |
public List<JisInfo> jisList;
|
|
19 |
public List<LogInInfo> loginList;
|
|
21 |
public List<ActivityInfo> jisList;
|
|
22 |
public List<ActivityInfo> loginList;
|
|
20 | 23 |
|
21 | 24 |
public CsvParser() |
22 | 25 |
{ |
23 | 26 |
TagInfo.CreateDictionaries(); |
24 | 27 |
path = "data/"; |
25 | 28 |
|
26 |
weatherParser = new WeatherParser(); |
|
27 |
jisParser = new JisParser(); |
|
28 |
loginParser = new LogInParser(); |
|
29 |
CsvDataLoader loader = new CsvDataLoader(); |
|
30 |
|
|
31 |
weatherParser = new WeatherParser(loader); |
|
32 |
jisParser = new JisParser(loader); |
|
33 |
loginParser = new LogInParser(loader); |
|
29 | 34 |
} |
30 | 35 |
|
31 | 36 |
public void Parse() |
Také k dispozici: Unified diff
re #8683 Fixing project dependencies problems