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