17 lines
200 B
C++
17 lines
200 B
C++
/*
|
|
Author: Joel Mathew Thomas
|
|
Date: 18-02-2026
|
|
*/
|
|
|
|
#include "DeliveryAssignment.h"
|
|
|
|
int DeliveryAssignment::getId() const
|
|
{
|
|
return m_id;
|
|
}
|
|
|
|
Order& DeliveryAssignment::getOrder()
|
|
{
|
|
return m_order;
|
|
}
|