using System; using System.Collections.Generic; using System.Text; namespace GreenTree.Strohrmann.ERP.Core.Domain.Business { public class Customer { /// /// Customer id /// public int Id { get; set; } /// /// Customer forename /// public string Firstname { get; set; } /// /// Customer lastname /// public string Lastname { get; set; } /// /// Customer company name /// public string CompanyName { get; set; } /// /// Customer address /// public string Address { get; set; } /// /// Customer town /// public string Town { get; set; } /// /// Customer zip code /// public string ZipCode { get; set; } /// /// Customer country /// public string Country { get; set; } /// /// Customer tax /// public virtual Tax Tax { get; set; } /// /// Customer crafts /// public virtual ICollection Crafts { get; set; } } }