Subversion Repositories SmartDukaan

Rev

Rev 35679 | Blame | Compare with Previous | Last modification | View Log | RSS feed

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

import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
import com.spice.profitmandi.dao.entity.auth.SipMaster;
import org.springframework.stereotype.Repository;

@Repository
public interface SipRepository {

    SipMaster selectByEmailOrMobile(String emailOrMobile) throws ProfitMandiBusinessException;

    SipMaster selectByCallerId(String callerId) throws ProfitMandiBusinessException;

    SipMaster selectBySipUrl(String sipUrl);

    java.util.List<SipMaster> selectAll();

}