30 lines
427 B
C++
30 lines
427 B
C++
#pragma once
|
|
#include "Bank.h"
|
|
#include "Product.h"
|
|
#include "Employee.h"
|
|
#include <vector>
|
|
|
|
class BankBranch : public Bank
|
|
{
|
|
public:
|
|
|
|
std::vector<Product> productList = {};
|
|
std::vector<Employee> employeeList = {};
|
|
|
|
BankBranch() = default;
|
|
BankBranch(
|
|
WorkingHours workingHours,
|
|
BankRequisites bankRequisites
|
|
) : Bank(
|
|
workingHours,
|
|
bankRequisites
|
|
) {
|
|
|
|
}
|
|
|
|
void report() {
|
|
//report to headquarter
|
|
};
|
|
};
|
|
|