Projekt

Obecné

Profil

Stáhnout (478 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
package cz.zcu.kiv.backendapi.bibliography;
2

    
3
import lombok.RequiredArgsConstructor;
4
import org.springframework.stereotype.Service;
5
import org.springframework.transaction.annotation.Transactional;
6

    
7
/**
8
 * Bibliography service implementation
9
 */
10
@Service
11
@Transactional
12
@RequiredArgsConstructor
13
public class BibliographyServiceImpl implements IBibliographyService {
14
    /**
15
     * Bibliography repository
16
     */
17
    private final BibliographyRepository bibliographyRepository;
18
}
(3-3/4)