Compare commits

..

No commits in common. "master" and "v0.1" have entirely different histories.
master ... v0.1

4 changed files with 1 additions and 28 deletions

View File

@ -6,9 +6,5 @@ public interface IStore<T> : IDisposable
public bool Add(T item);
public bool Has(T item);
public bool Remove(T item);
public IEnumerable<T> GetValues();
}

View File

@ -29,9 +29,6 @@ public class LocalStore<T> : IStore<T>
using (FileStream fs = new FileStream(this.filePath, FileMode.OpenOrCreate))
using (StreamWriter writer = new StreamWriter(fs, DefaultEncoding))
{
fs.Seek(0, SeekOrigin.Begin);
fs.SetLength(0);
foreach (T item in this.items)
{
string json = JsonSerializer.Serialize<T>(item);
@ -56,16 +53,6 @@ public class LocalStore<T> : IStore<T>
return true;
}
public bool Has(T item)
{
return this.items.Contains(item);
}
public bool Remove(T item)
{
return this.items.Remove(item);
}
public IEnumerable<T> GetValues()
{
return this.items.ToList();

View File

@ -26,16 +26,6 @@ public class JsonDB<T> : IDisposable
return this.store.Add(item);
}
public bool Has(T item)
{
return this.store.Has(item);
}
public bool Remove(T item)
{
return this.store.Remove(item);
}
public IEnumerable<T> GetValues()
{
return this.store.GetValues();

View File

@ -20,7 +20,7 @@ bool result = jsonDB.Add(new T());
IEnumerable<T> allItems = jsonDB.GetValues();
// DBから特定のアイテムを取得します。
IEnumerable<T> filteredItems = jsonDB.GetValues((T) => true);
IEnumerable<T> filteredItems = jsonDB.GetValues((T) => true):
// ファイルに書き込む
jsonDB.Commit();