public class PracownicyAjaxAction {
public String deletePracownicy(Integer id){
try {
PracownikService pracownikService = (PracownikService) BusinessUtil.findBusiness("PracownikService");
pracownikService.deleteById(id);
} catch (Exception e) {
e.printStackTrace();
return e.getCause().getMessage();
}
return "";