sea_transport_project/cargoentity.cpp
2020-09-10 00:43:40 +07:00

7 lines
154 B
C++

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