fixed issue

This commit is contained in:
MassiveAtoms
2019-06-24 20:15:30 -03:00
parent 162d79b7d7
commit 20c5e25619
2 changed files with 4 additions and 5 deletions

View File

@ -2,10 +2,9 @@
#include <iostream>
// moet aangepast worden om een verhicle_type toe te voegen
Customer::Customer(int id_, string name_, string card_code_)
Customer::Customer(int id_, string name_)
: id { id_ }
, name { name_ }
, card_code { card_code_ }
{
}