using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
using Tango.BL.Enumerations;
namespace Tango.BL.Dispensing
{
///
/// Represents a dispensing calculator attribute used to decorate an derived types
/// and define the associated IDS Pack calculation formula code.
///
///
public class DispensingCalcAttribute : Attribute
{
///
/// Gets or sets the IDS pack formula.
///
public IdsPackFormulas Formula { get; set; }
///
/// Initializes a new instance of the class.
///
/// The IDS pack formula.
public DispensingCalcAttribute(IdsPackFormulas formula)
{
Formula = formula;
}
}
}