package register;
import java.util.List;
public interface IRegister {
public boolean saveUser(final RegisterPojo r);
public int updateUser(RegisterPojo r);
public int deleteUser(RegisterPojo r);
public List<RegisterPojo> getDetails();
}
import java.util.List;
public interface IRegister {
public boolean saveUser(final RegisterPojo r);
public int updateUser(RegisterPojo r);
public int deleteUser(RegisterPojo r);
public List<RegisterPojo> getDetails();
}
No comments:
Post a Comment