YL
2021-09-06 28f99afc92f67b372df91f1205a3dd8c2ff7be6e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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);
        }
    }
}