GiftService.java.svn-base 566 Bytes
Newer Older
Kim Gyeongeun committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package jp.agentec.sinaburocast.service;

import java.util.List;

import org.seasar.framework.container.annotation.tiger.Component;
import org.seasar.framework.container.annotation.tiger.InstanceType;

import jp.agentec.sinaburocast.entity.Gift;

@Component(instance=InstanceType.SINGLETON)
public class GiftService extends AbstractService<Gift> {

    public Gift findById(Integer giftId) {
        return select().id(giftId).getSingleResult();
    }

    public List<Gift> findAllOrderById() {
        return select().orderBy("giftId asc").getResultList();
    }
}