Included XML files for the "pay to new number" and "pay to old number" features in the Ozon platform.
12 lines
194 B
C++
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);
|
|
};
|