Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
23405 amit.gupta 1
package com.spice.profitmandi.dao.repository.dtr;
2
 
3
import java.util.List;
4
 
5
import org.springframework.stereotype.Repository;
6
 
7
import com.spice.profitmandi.common.enumuration.IndentStatus;
8
import com.spice.profitmandi.dao.entity.fofo.Indent;
9
 
10
@Repository 
11
public interface IndentRepository {
12
	public void persist(Indent indent);
13
	public List<Indent> selectIndentByStatus(int fofoId, IndentStatus status);
14
	public List<Indent> selectIndents(int fofoId);
15
}