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