⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 newsfacadeimpl.java~7~

📁 明日新闻网络中心是由吉林省明日科技有限公司开发的一个信息管理系统
💻 JAVA~7~
字号:
package com.victor.service;

import java.util.List;
import com.victor.domain.NewsActionForm;
import com.victor.dao.NewsDao;
import com.victor.dao.NewsDaoImpl;
import java.sql.SQLException;

public class NewsFacadeImpl
    implements NewsFacade {
  private NewsDao newsDao;
  public NewsFacadeImpl() {
    this.newsDao = new NewsDaoImpl();
  }

  public List newsWarch() {
    return this.newsDao.newsWarch();
  }

  public void insertNews(NewsActionForm newsActionForm) {
    this.newsDao.insertNews(newsActionForm);
  }

  public void deleteNews(NewsActionForm newsActionForm) {
    this.newsDao.deleteNews(newsActionForm);
  }

  public List selectOneNews(NewsActionForm newsActionForm) {
    return this.newsDao.selectOneNews(newsActionForm);
  }


}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -