Added AccountWindow to display account tables linked to devices and TransactionWindow for viewing account details. Enhanced DeviceDAO and AccountDAO to support additional filtering and data retrieval functionalities.
14 lines
372 B
C++
14 lines
372 B
C++
#pragma once
|
|
#include "db/AccountInfo.h"
|
|
|
|
class AccountDAO {
|
|
public:
|
|
[[nodiscard]] static bool upsertAccount(const AccountInfo &info);
|
|
|
|
[[nodiscard]] static bool deleteAccount(int id);
|
|
|
|
[[nodiscard]] static QList<AccountInfo> getAccounts(const QString &deviceId, const QString &appName);
|
|
|
|
[[nodiscard]] static AccountInfo getAccountById(int accountId);
|
|
};
|