Ejemplo n.º 1
0
 public Car(int id, string licensPlate, int range, Customer customer)
 {
     _id = id;
     _licensPlate = licensPlate;
     _range = range;
     _customer = customer;
 }
Ejemplo n.º 2
0
 public Route(int id, DateTime startDate, DateTime endDate, Location startAddress, Location endAddress, Customer customer)
 {
     _id = id;
     _startDate = startDate;
     _endDate = endDate;
     _startAddress = startAddress;
     _endAddress = endAddress;
     _customer = customer;
 }