You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Linq.Expressions; |
|
using System.Threading.Tasks; |
|
|
|
namespace EGFramework |
|
{ |
|
public class EGCsvSave : IEGSaveData, IEGSave |
|
{ |
|
public void InitSaveFile(string path) |
|
{ |
|
throw new NotImplementedException(); |
|
} |
|
|
|
public void SetData<TData>(string dataKey, TData data, object id) |
|
{ |
|
throw new NotImplementedException(); |
|
} |
|
public TData GetData<TData>(string dataKey, object id) where TData : new() |
|
{ |
|
throw new NotImplementedException(); |
|
} |
|
public IEnumerable<TData> QueryData<TData>(string dataKey, string sql) where TData : new() |
|
{ |
|
throw new NotImplementedException(); |
|
} |
|
|
|
public IEnumerable<TData> GetAll<TData>(string dataKey) where TData : new() |
|
{ |
|
throw new NotImplementedException(); |
|
} |
|
|
|
public IEnumerable<TData> FindData<TData>(string dataKey, Expression<Func<TData, bool>> expression) where TData : new() |
|
{ |
|
throw new NotImplementedException(); |
|
} |
|
} |
|
} |