Subversion Repositories SmartDukaan

Rev

Rev 32886 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
26014 amit.gupta 1
package com.spice.profitmandi.dao.repository.auth;
2
 
33247 ranu 3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
4
import com.spice.profitmandi.dao.entity.auth.Menu;
26014 amit.gupta 5
import org.springframework.stereotype.Repository;
6
 
33247 ranu 7
import java.util.List;
26014 amit.gupta 8
 
9
@Repository
10
public interface MenuRepository {
33247 ranu 11
    List<Menu> selectAllByIds(List<Integer> menuIds) throws ProfitMandiBusinessException;
32886 shampa 12
 
33247 ranu 13
    List<Menu> selectAllBySequencesId(List<Integer> menuSequences) throws ProfitMandiBusinessException;
14
 
26014 amit.gupta 15
	Menu selectById(int menuId);
16
	List<Menu> selectAll();
32886 shampa 17
	List<Menu> selectAllBySequence();
26014 amit.gupta 18
}