Exemplo n.º 1
0
 public Boat(string name, int length, boats_type type, Guid boat_id)
 {
     this.name = name;
     this.length = length;
     this.type = type;
     this.boat_id = boat_id;
 }
Exemplo n.º 2
0
 public Boat(string name, int length, boats_type type, Guid boat_id)
 {
     this.name    = name;
     this.length  = length;
     this.type    = type;
     this.boat_id = boat_id;
 }
Exemplo n.º 3
0
 public Boat(string name, int length, boats_type type)
 {
     this.name = name;
     this.length = length;
     this.type = type;
     boat_id = new Guid();       //Creates a random hexadecimal number
 }
Exemplo n.º 4
0
 public Boat(string name, int length, boats_type type)
 {
     this.name   = name;
     this.length = length;
     this.type   = type;
     boat_id     = new Guid();   //Creates a random hexadecimal number
 }