Inheritance: IStorage
Esempio n. 1
0
        private static void Main(string[] args)
        {
            var db = new StorageTmp();

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

            Console.ReadLine();
        }
Esempio n. 2
0
 public ListStorageTmp(StorageTmp storage)
 {
     this.motherStorage = storage;
     this.infoFromId    = new Dictionary <Guid, FullListInfo>();
 }
Esempio n. 3
0
 public MsgStorageTmp(StorageTmp storage)
 {
     this.motherStorage = storage;
     this.infoFromId    = new SortedDictionary <Guid, FullMessageInfo>();
 }
Esempio n. 4
0
 public AccountStorageTmp(StorageTmp storage)
 {
     this.motherStorage = storage;
     this.infoFromId    = new Dictionary <Guid, FullAccountInfo>();
     this.idFromName    = new Dictionary <string, Guid>();
 }
Esempio n. 5
0
 public UserStorageTmp(StorageTmp storage)
 {
     this.storage     = storage;
     this.idFromLogin = new Dictionary <string, Guid>();
     this.infoFromId  = new Dictionary <Guid, FullUserInfo>();
 }
Esempio n. 6
0
        private static void Main(string[] args)
        {
            var db = new StorageTmp();
            db.InitWithStupidData();
            db.afficheDebug();

            Console.ReadLine();
        }
Esempio n. 7
0
 public UserStorageTmp(StorageTmp storage)
 {
     this.storage = storage;
     this.idFromLogin = new Dictionary<string, Guid>();
     this.infoFromId = new Dictionary<Guid, FullUserInfo>();
 }
Esempio n. 8
0
 public MsgStorageTmp(StorageTmp storage)
 {
     this.motherStorage = storage;
     this.infoFromId = new SortedDictionary<Guid, FullMessageInfo>();
 }
Esempio n. 9
0
 public ListStorageTmp(StorageTmp storage)
 {
     this.motherStorage = storage;
     this.infoFromId = new Dictionary<Guid, FullListInfo>();
 }
Esempio n. 10
0
 public AccountStorageTmp(StorageTmp storage)
 {
     this.motherStorage = storage;
     this.infoFromId = new Dictionary<Guid, FullAccountInfo>();
     this.idFromName = new Dictionary<string, Guid>();
 }