source: ether_statistics/persistence/interface/com/ether/dao/McoDAO.java @ 569

Last change on this file since 569 was 569, checked in by vmipsl, 12 years ago

Nouveau projet

File size: 574 bytes
Line 
1package com.ether.dao;
2
3import com.ether.PersistenceException;
4import com.ether.mco.Mco;
5import com.ether.mco.McoFilter;
6import org.jetbrains.annotations.NotNull;
7import org.jetbrains.annotations.Nullable;
8
9import java.util.List;
10
11/**
12 * @author vmipsl
13 * @date 03 apr 2012
14 */
15public interface McoDAO
16        extends SearchableDomainAccessObject<Mco, Integer, McoFilter>
17{
18    @NotNull
19    List<Mco> getAllMcosByNameOrder()
20            throws PersistenceException;
21
22    @Nullable
23    Mco getMcoByCode( @NotNull final String code )
24            throws PersistenceException;
25}
Note: See TracBrowser for help on using the repository browser.