public ProductManager(string databasePath, string productTableName)
        {
            _databasePath     = databasePath;
            _productTableName = productTableName;

            _zdManager = new ZDatabaseManager(_databasePath);
        }
Beispiel #2
0
        public UserManager(string databasePath, string accountTableName)
        {
            _databasePath     = databasePath;
            _accountTableName = accountTableName;

            _zdManager = new ZDatabaseManager(databasePath);
        }