Subversion Repositories SmartDukaan

Rev

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

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

import org.springframework.stereotype.Repository;

import com.spice.profitmandi.dao.entity.fofo.Mou;

@Repository
public interface MouRepository {

        public void persist(Mou mou);

        public Mou selectByFofoId(int fofoId);

}