Projekt

Obecné

Profil

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

    
3
import cz.zcu.kiv.backendapi.model.TypeEntity;
4

    
5
import java.util.List;
6
import java.util.Optional;
7

    
8
/**
9
 * Type service interface
10
 */
11
public interface ITypeService {
12

    
13
    void saveType(TypeEntity typeEntity);
14

    
15
    void saveTypes(List<TypeEntity> typesEntities);
16

    
17
    Optional<TypeEntity> getTypeByName(String type);
18
}
(1-1/2)