aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/Entities/IdsPackFormula.cs
blob: 7d1dd23ff42e211829e144f5026e63efbf531db7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="IdsPackFormula" /> class.
        /// </summary>
        public IdsPackFormula() : base()
        {

        }

        [NotMapped]
        [JsonIgnore]
        public IdsPackFormulas Type
        {
            get { return (IdsPackFormulas)Code; }
        }
    }
}