tech.deepdreams.worker.api.services.OvertimeIndemnityService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worker-api Show documentation
Show all versions of worker-api Show documentation
Payroll Worker API project for Java 17
package tech.deepdreams.worker.api.services;
import java.util.Map;
import tech.deepdreams.worker.api.enums.CountryCode;
public interface OvertimeIndemnityService {
public CountryCode country() ;
public int version() ;
public String code() ;
public Double calculate(Map params) ;
}