using System; using System.Collections.Generic; using System.Text; namespace GreenTree.Strohrmann.ERP.Core.Domain.Business { public class Title { #region Properties /// /// Title id /// public int Id { get; set; } /// /// Title name /// public string Name { get; set; } /// /// Tax customers /// public virtual ICollection Customers { get; set; } #endregion #region Ctor /// /// Initializes a new instance of the Title class /// public Title() { } /// /// Initializes a new instance of the Title class /// /// The id. /// The name. public Title(int id, string name) { Id = id; Name = name; } #endregion } }