blob: c4077f4e5631a75a37d180c23aeac2af73e73306 [file] [log] [blame]
package org.osbp.mysmartshop.dtos.service;
import org.eclipse.osbp.dsl.dto.lib.services.impl.AbstractDTOService;
import org.osbp.mysmartshop.dtos.CashDrawerCurrencyDto;
import org.osbp.mysmartshop.entities.CashDrawerCurrency;
@SuppressWarnings("all")
public class CashDrawerCurrencyDtoService extends AbstractDTOService<CashDrawerCurrencyDto, CashDrawerCurrency> {
public Class<CashDrawerCurrencyDto> getDtoClass() {
return CashDrawerCurrencyDto.class;
}
public Class<CashDrawerCurrency> getEntityClass() {
return CashDrawerCurrency.class;
}
public Object getId(final CashDrawerCurrencyDto dto) {
return dto.getId();
}
}