Пример #1
0
		public static CurrentStorage Create(
			string         fileName,
			ICryptoService cryptoService,
			bool           readOnly = false
		)
		{
			CurrentStorage storage = new CurrentStorage(fileName, readOnly)
			{
				CryptoService = cryptoService
			};

			storage.CreateTables();

			return storage;
		}
        public static CurrentStorage Create(
            string fileName,
            ICryptoService cryptoService,
            bool readOnly = false
            )
        {
            CurrentStorage storage = new CurrentStorage(fileName, readOnly)
            {
                CryptoService = cryptoService
            };

            storage.CreateTables();

            return(storage);
        }