1
0
forked from BRT/arc
arc/database/dao/BankDAO.h
slava afbf3a3afb Add Ozon pay_to_new_number and pay_to_old_number XML assets
Included XML files for the "pay to new number" and "pay to old number" features in the Ozon platform.
2026-03-01 09:30:59 +07:00

12 lines
194 B
C++

#pragma once
#include "db/BankInfo.h"
#include <QList>
class BankDAO {
public:
[[nodiscard]] static QList<BankInfo> getAll();
static void replaceAll(const QList<BankInfo> &banks);
};