I have a type:
public class Human { public int Id { get; set; } public string Address { get; set; } public string Name { get; set; } public List
ContactNumbers = new List();
If you want it to be passed in, just take
public Human(List numbers) { ContactNumbers = numbers; }