You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
493 B
22 lines
493 B
//
|
|
// Created by ioachim on 26.05.2025.
|
|
//
|
|
|
|
#ifndef CONTRACT_H
|
|
#define CONTRACT_H
|
|
|
|
#include "Document.h"
|
|
|
|
|
|
class Contract : public Document {
|
|
private:
|
|
std::vector<std::tuple<User*, std::string>> semnatariPF;
|
|
std::vector<std::tuple<Autoritate*, std::string>> semnatariPJ;
|
|
public:
|
|
Contract(std::string _titlu, User* _Titular, Autoritate* _Emitator, std::string _continut, Zi* _data_emitere, Zi* _data_expirare);
|
|
std::string exportForSigning() override;
|
|
};
|
|
|
|
|
|
|
|
#endif //CONTRACT_H
|
|
|