コード例 #1
0
ファイル: ContentStore.cs プロジェクト: samigrasten/SOLID
 public ContentStore(StoreBase fileStore)
 {
     _fileStore = fileStore;
 }
コード例 #2
0
ファイル: CacheStore.cs プロジェクト: samigrasten/SOLID
 public CacheStore(StoreBase store)
 {
     this.store = store;
 }