Esempio n. 1
0
 public ILIDTO(LocationDTO location, ProductDTO product, int productQuantity) : this(location.Id, product.Id, productQuantity)
 {
     //Product = product;
     //Location = location;
 }
Esempio n. 2
0
 public ManagerDTO(string name, string email, string password, LocationDTO managedLocation) : base(name, email, password)
 {
     //Location = managedLocation;
     LocationId = managedLocation.Id;
 }