/
Apathy21
/
company
Обзор
Документация
Войти
/
Apathy21
/
company
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
MainService/src/main/java/org/example/dao/api/CompanyDao.java
17 строк
480 B
alexeev509
Skeletop company app realization
13 сен 2024, 19:21
13 сен 2024, 19:21
2a02e11
Код
Авторство
О чём код?
package org.example.dao.api; import org.example.Entity.Company; import java.util.List; public interface CompanyDao extends BaseDao<Company> { /* * #NOTE: was used assumption, that one company can't have a lot of branch offices; * that's why this method is useful only for companies; * In real project we must talk about this moment: "we must load all branch offices or range"; */ List<Company> findAllWithRangeConstraint(int from, int to); }