2012-07-21 03:11:10 +00:00
|
|
|
|
using System.Collections.Generic;
|
2012-03-19 23:57:59 +00:00
|
|
|
|
using Axios.Engine.File;
|
|
|
|
|
|
|
|
|
|
namespace Axios.Engine.Data
|
|
|
|
|
{
|
|
|
|
|
class AxiosCSV
|
|
|
|
|
{
|
|
|
|
|
private AxiosFile _file;
|
|
|
|
|
public AxiosCSV(AxiosFile file)
|
|
|
|
|
{
|
|
|
|
|
_file = file;
|
|
|
|
|
}
|
2012-07-21 03:11:10 +00:00
|
|
|
|
|
|
|
|
|
public List<Dictionary<string, string>> GetData()
|
|
|
|
|
{
|
|
|
|
|
List<Dictionary<string, string>> ret = new List<Dictionary<string, string>>();
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2012-03-19 23:57:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|