Esempio n. 1
0
 protected Garage(string garageName, string countryCode, GarageDetail garageDetail, Guid customerId)
 {
     GarageName   = garageName;
     CountryCode  = countryCode;
     GarageDetail = garageDetail;
     CustomerId   = customerId;
 }
Esempio n. 2
0
 public static Garage CreateGarage(string garageName, string countryCode, GarageDetail garageDetail, Guid customerId)
 => new(garageName, countryCode, garageDetail, customerId);