[Solved] How to create an Address field into this Company class [closed]
[ad_1] You almost have it. You just need to require an Address in your constructors and set a corresponding property with that passed in address. public class Address { public string Street { get; set; } public string City { get; set; } public string State { get; set; } public string ZipCode { get; … Read more