Rev 26783 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.repository.dtr;import com.spice.profitmandi.dao.entity.dtr.Optin;import org.springframework.stereotype.Repository;@Repositorypublic interface OptinRepository {void persist(Optin otp);Optin selectByMobile(String mobile);}