using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.Enumerations; namespace Tango.BL.Entities { public partial class IdsPackFormula : IdsPackFormulaBase { /// /// Initializes a new instance of the class. /// public IdsPackFormula() : base() { } [NotMapped] [JsonIgnore] public IdsPackFormulas Type { get { return (IdsPackFormulas)Code; } } } }