Ejemplo n.º 1
0
 private decimal?GetPastMonthGrossSalary(Employees e, DateTime period)
 {
     return(LiquidationFixedDataB.SelectPastMonthGrossSalary(e.file_n, period) ?? 0);
 }
Ejemplo n.º 2
0
 private int?GetHolidaysF(Employees e, DateTime period)
 {
     return(LiquidationFixedDataB.SelectVacationsDays(e.file_n, period));
 }
Ejemplo n.º 3
0
 private decimal?GetBestGrossSalary(Employees e, DateTime period)
 {
     return(LiquidationFixedDataB.SelectBestGrossSalary(e.file_n, period));
 }