7 lines
155 B
C++
7 lines
155 B
C++
#include "cargoentity.h"
|
|
|
|
CargoEntity::CargoEntity(QString c_id, DeliveryPointEntity *dest)
|
|
{
|
|
this->_cargo_id = c_id;
|
|
this->_destination = dest;
|
|
}
|