namespace _0_Framework.Domain.CustomizeCheckoutValueObjects;
public class NightWorkPay
{
public NightWorkPay(NightWorkType nightWorkingType, double value)
{
NightWorkingType = nightWorkingType;
Value = value;
}
private NightWorkPay()
{
}
public NightWorkType NightWorkingType { get; private set; }
public double Value { get; private set; }
}
public enum NightWorkType
{
///
///محاسبه نمیشود
///
None,
///
/// به صورت درصدی از مزد روزانه
///
PercentageFromSalary,
///
/// مقدار پول شخصی سازی شده برای هر ساعت شب کاری
///
MoneyPerHour
}