Package de.hybris.platform.order.daos
Interface PaymentModeDao
-
- All Superinterfaces:
GenericDao<PaymentModeModel>
- All Known Implementing Classes:
DefaultPaymentModeDao
public interface PaymentModeDao extends GenericDao<PaymentModeModel>
Data Access Object oriented on PaymentMode
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<PaymentModeModel>findAllPaymentModes()Search for all PaymentModesjava.util.List<PaymentModeModel>findPaymentModeForCode(java.lang.String code)Search for PaymentMode by code
-
-
-
Method Detail
-
findPaymentModeForCode
java.util.List<PaymentModeModel> findPaymentModeForCode(java.lang.String code)
Search for PaymentMode by code- Parameters:
code- the code
-
findAllPaymentModes
java.util.List<PaymentModeModel> findAllPaymentModes()
Search for all PaymentModes
-
-