Sunday, 24 January 2016

DAT -- IRegister

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();
}

No comments:

Post a Comment