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