sea_transport_project/cargoentity.cpp
2020-09-19 08:27:52 +07:00

7 lines
155 B
C++

#include "cargoentity.h"
CargoEntity::CargoEntity(QString c_id, DeliveryPointEntity *dest)
{
this->_cargo_id = c_id;
this->_destination = dest;
}