Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
28420 tejbeer 1
package com.spice.profitmandi.dao.repository.fofo;
2
 
3
import org.springframework.stereotype.Repository;
4
 
5
import com.spice.profitmandi.dao.entity.fofo.Mou;
6
 
7
@Repository
8
public interface MouRepository {
9
 
10
	public void persist(Mou mou);
11
 
12
	public Mou selectByFofoId(int fofoId);
13
 
14
}