chenzx
2024-12-11 4043a2fe2103c7960b74acbccdcc876d11f83f0f
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
35
using GasolineBlend.DAL;
using GasolineBlend.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static GasolineBlend.Entity.TreeDiagramRecord;
 
namespace GasolineBlend.BLL
{
    public class TreeDiagramRecordBLL
    {
        private TreeDiagramRecordDAL _acc = new TreeDiagramRecordDAL();
 
        /// <summary>
        /// 获取用益信托网记录数据
        /// </summary>
        /// <returns></returns>
        public List<TreeDiagramRecord> GetTreeDiagramRecordIsName(string CompanyName)
        {
            return _acc.GetTreeDiagramRecordIsName(CompanyName);
        }
 
        public bool AddTreeDiagramRecord(TreeDiagramRecord treeDiagramRecord)
        {
            return _acc.AddTreeDiagramRecord(treeDiagramRecord);
        }
 
        public bool UpdateTreeDiagramRecord(TreeDiagramRecord treeDiagramRecord)
        {
            return _acc.UpdateTreeDiagramRecord(treeDiagramRecord);
        }
    }
}