using System; using System.Collections.Generic; using System.Text; using System.Data; namespace BLL { public class ClsGy_Factory_View { public DAL.ClsGy_Factory_View dal = new DAL.ClsGy_Factory_View(); //帮助 public bool RefreshView() { return dal.RefreshView(); } //返回项目信息 public bool GetInfoByID(Int64 sItemID) { return dal.GetInfoByID(sItemID); } //根据代码返回项目信息 public bool GetInfoByNumber(string sNumber) { return dal.GetInfoByNumber(sNumber); } //返回项目信息 public bool GetInfo(DataSet DS) { return dal.GetInfo(DS); } } }