Inheritance: IStorage
コード例 #1
0
ファイル: StorageTmp.cs プロジェクト: xuedong/Tigwi
        private static void Main(string[] args)
        {
            var db = new StorageTmp();

            db.InitWithStupidData();
            db.afficheDebug();

            Console.ReadLine();
        }
コード例 #2
0
ファイル: StorageTmp.cs プロジェクト: xuedong/Tigwi
 public ListStorageTmp(StorageTmp storage)
 {
     this.motherStorage = storage;
     this.infoFromId    = new Dictionary <Guid, FullListInfo>();
 }
コード例 #3
0
ファイル: StorageTmp.cs プロジェクト: xuedong/Tigwi
 public MsgStorageTmp(StorageTmp storage)
 {
     this.motherStorage = storage;
     this.infoFromId    = new SortedDictionary <Guid, FullMessageInfo>();
 }
コード例 #4
0
ファイル: StorageTmp.cs プロジェクト: xuedong/Tigwi
 public AccountStorageTmp(StorageTmp storage)
 {
     this.motherStorage = storage;
     this.infoFromId    = new Dictionary <Guid, FullAccountInfo>();
     this.idFromName    = new Dictionary <string, Guid>();
 }
コード例 #5
0
ファイル: StorageTmp.cs プロジェクト: xuedong/Tigwi
 public UserStorageTmp(StorageTmp storage)
 {
     this.storage     = storage;
     this.idFromLogin = new Dictionary <string, Guid>();
     this.infoFromId  = new Dictionary <Guid, FullUserInfo>();
 }
コード例 #6
0
ファイル: StorageTmp.cs プロジェクト: ismaelbelghiti/Tigwi
        private static void Main(string[] args)
        {
            var db = new StorageTmp();
            db.InitWithStupidData();
            db.afficheDebug();

            Console.ReadLine();
        }
コード例 #7
0
ファイル: StorageTmp.cs プロジェクト: ismaelbelghiti/Tigwi
 public UserStorageTmp(StorageTmp storage)
 {
     this.storage = storage;
     this.idFromLogin = new Dictionary<string, Guid>();
     this.infoFromId = new Dictionary<Guid, FullUserInfo>();
 }
コード例 #8
0
ファイル: StorageTmp.cs プロジェクト: ismaelbelghiti/Tigwi
 public MsgStorageTmp(StorageTmp storage)
 {
     this.motherStorage = storage;
     this.infoFromId = new SortedDictionary<Guid, FullMessageInfo>();
 }
コード例 #9
0
ファイル: StorageTmp.cs プロジェクト: ismaelbelghiti/Tigwi
 public ListStorageTmp(StorageTmp storage)
 {
     this.motherStorage = storage;
     this.infoFromId = new Dictionary<Guid, FullListInfo>();
 }
コード例 #10
0
ファイル: StorageTmp.cs プロジェクト: ismaelbelghiti/Tigwi
 public AccountStorageTmp(StorageTmp storage)
 {
     this.motherStorage = storage;
     this.infoFromId = new Dictionary<Guid, FullAccountInfo>();
     this.idFromName = new Dictionary<string, Guid>();
 }