www.pudn.com > ClientManager.rar > KhxxFacadeImpl.java
package com.service;
import java.util.List;
import com.dao.KhxxDao;
import com.dao.KhxxDaoImpl;
import com.domain.KhxxForm;
public class KhxxFacadeImpl
implements KhxxFacade {
private KhxxDao khxx = null;
public KhxxFacadeImpl() {
this.khxx = new KhxxDaoImpl();
}
public List khxxSelect() {
return this.khxx.khxxSelect();
}
public KhxxForm khxxSelectOne(KhxxForm khxx) {
return this.khxx.khxxSelectOne(khxx);
}
public int khxxCount() {
return this.khxx.khxxCount();
}
public void khxxInsert(KhxxForm khxx) {
this.khxx.khxxInsert(khxx);
}
public void khxxDelete(KhxxForm khxx) {
this.khxx.khxxDelete(khxx);
}
public void khxxUpdate(KhxxForm khxx) {
this.khxx.khxxUpdate(khxx);
}
public KhxxForm khxxMc(KhxxForm khxx) {
return this.khxx.khxxMc(khxx);
}
}