-
Notifications
You must be signed in to change notification settings - Fork 0
/
Empresa.cpp
82 lines (60 loc) · 1.63 KB
/
Empresa.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include "Empresa.hpp"
using namespace std;
list<Departamento> Empresa::GetDepartamentos() {
return this->Departamentos;
}
list<Cargo> Empresa::GetCargos() {
return this->Cargos;
}
list<Funcionario> Empresa::GetFuncionarios() {
return this->Funcionarios;
}
list<Cliente> Empresa::GetClientes() {
return this->Clientes;
}
list<Categoria> Empresa::GetCategorias() {
return this->Categorias;
}
list<Estoque> Empresa::GetEstoques() {
return this->Estoques;
}
list<Produto> Empresa::GetProdutos() {
return this->Produtos;
}
list<Orcamento> Empresa::GetVendas() {
return this->listaVendas;
}
list<Veiculo> Empresa::GetVeiculos() {
return this->Veiculos;
}
void Empresa::SetDepartamentos(Departamento Departamentos) {
this->Departamentos.push_back(Departamentos);
}
void Empresa::SetCargos(Cargo Cargos) {
this->Cargos.push_back(Cargos);
}
void Empresa::SetFuncionarios(Funcionario Funcionarios) {
this->Funcionarios.push_back(Funcionarios);
}
void Empresa::SetClientes(Cliente Clientes) {
this->Clientes.push_back(Clientes);
}
void Empresa::SetCategorias(Categoria Categorias) {
this->Categorias.push_back(Categorias);
}
void Empresa::SetEstoques(Estoque Estoques) {
this->Estoques.push_back(Estoques);
}
void Empresa::SetProdutos(list<Produto> *Produtos) {
//this->Produtos.push_back(Produtos);
this->Produtos = *Produtos;
}
void Empresa::SetVendas(Orcamento Compras) {
this->listaVendas.push_back(Compras);
}
void Empresa::SetCompras(Orcamento Compras){
this->Compras.push_back(Compras);
}
void Empresa::SetVeiculos(Veiculo Veiculos){
this->Veiculos.push_back(Veiculos);
}