-
Notifications
You must be signed in to change notification settings - Fork 0
/
Venta.h
56 lines (34 loc) · 1.03 KB
/
Venta.h
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
#pragma once
#include <cstring>
#include "Fecha.h"
#include "Producto.h"
#include "ArchivoProducto.h"
class Venta {
private:
Producto obj;
Fecha _fecha; // Tiene que venir de la clase FECHA.
int _idVenta;
float _precioVenta; /// MODIFICAR
int _idCliente;
int _idVendedor;
char _marca[20];
char _modelo[20];
public:
Venta();
Venta(const Fecha& fecha, int idVenta, float precioVenta, int idCliente, int idVendedor, std::string marca, std::string modelo);
// FECHA fecha
int getIdVenta();
void setIdVenta(int idVenta);
float getPrecioVenta();
void setPrecioVenta(float precioVenta);
int getIdCliente();
void setIdCliente(int idCliente);
int getIdVendedor();
void setIdVendedor(int idVendedor);
void setFecha(const Fecha& fecha);
Fecha getFecha() const;
std::string getMarca();
void setMarca(std::string _marca);
std::string getModelo();
void setModelo(std::string _modelo);
};