/* * It allows to make a new shipment with the service or product created */ public void createTransport(string idcar, int iduser) { Transport newTransport = new Transport(idcar, iduser); tdao.addTransport(newTransport); }