DataBMPHome.java 294 Bytes
Newer Older
TongZuu committed
1 2 3 4 5 6 7 8
package com.csc.entity;

import com.csc.library.utilities.UProfile;
public interface DataBMPHome  {
  public DataBMP create(DataBMPKey key)throws Exception ;
  public DataBMP findByPrimaryKey(DataBMPKey key)throws Exception ;
  public void setUProfile(UProfile upf)throws Exception ;
}