Пример #1
0
        private static void Main(string[] args)
        {
            var db = new StorageTmp();

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

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

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