Ejemplo n.º 1
0
        public AdminViewModel()
        {
            dbHelper = new DatabaseHelper();
            Users = dbHelper.Get(_offset,UsersPerPage);

            CalcPagination();

            _addUserCommand = new RelayCommand(AddUser);
            _modifyUserCommand = new RelayCommand(ModifyUser);
            _deleteUserCommand = new RelayCommand(DeleteUser);
            _flipLeftCommand = new RelayCommand(FlipLeft);
            _flipRightCommand = new RelayCommand(FlipRight);
        }