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

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

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

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