Subversion Repositories SmartDukaan

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.repository.dtr;

import java.util.List;

import org.springframework.stereotype.Repository;

import com.spice.profitmandi.common.enumuration.IndentStatus;
import com.spice.profitmandi.dao.entity.fofo.Indent;

@Repository 
public interface IndentRepository {
        public void persist(Indent indent);
        public List<Indent> selectIndentByStatus(int fofoId, IndentStatus status);
        public List<Indent> selectIndents(int fofoId);
}