Ejemplo n.º 1
0
        public MainPage()
        {
            InitializeComponent();
            InitVars();
            InitCheckBoxes();

            dataBase = new NoteDataBase($"../../../../cicle0.db3");
            UpdateNovelsList();
        }
Ejemplo n.º 2
0
        public Model()
        {
            counter = 0; // counter of notes

            localDB = new NoteDataBase <Note>();

            file = localDB.SetConnection(dbName);

            collection = new List <Note>();
        }