public TAnmount SalaryAmountScheduleWork(Period period, TAnmount amountMonthly,
                                                 TSeconds fulltimeHour, TSeconds workingsHours)
        {
            decimal coeffSalary = 1.0m;

            decimal salaryValue = RoundingPay.MonthlyAmountWithWorkingHours(amountMonthly, coeffSalary, fulltimeHour, workingsHours);

            return(salaryValue);
        }
 public TAnmount SalaryAmountScheduleFull(Period period, TAnmount amountMonthly)
 {
     return(TAnmount.Zero);
 }