Project

General

Profile

1
package eu.dnetlib.uoaadmintools.dao;
2

    
3

    
4
import eu.dnetlib.uoaadmintools.entities.Statistics;
5

    
6
import java.util.List;
7

    
8
/**
9
 * Created by argirok on 5/3/2018.
10
 */
11
public interface StatisticsDAO {
12
    List<Statistics> findAll();
13

    
14
    Statistics findById(String Id);
15

    
16
    Statistics findByPid(String Pid);
17

    
18
    Statistics save(Statistics statistic);
19

    
20
    void deleteAll();
21

    
22
    void delete(String id);
23
}
(17-17/18)