Benim şu şekilde bir modelim var örn :
public partial class Customer    
{       public int Type{ get; set; }
        public string CustomerCode{ get; set; }
        public string FirstName { get; set; }
       public List<Address> Address{ get; set; }
}

public partial class Address
{             
public string AddressTypeCode { get; set; }
public string CountryCode { get; set; }
}
Bu şekilde bir modelim var ben üstteki address listesine veri eklemek istiyorum elle kod tarafınad nasıl yapabilirim?