chenzx
2024-11-25 68f761dcdef9149f148508e5df8f1c2970934f15
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 CommonHelper;
using GasolineBlend.DAL;
using GasolineBlend.Entity;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using static GasolineBlend.Entity.DefaultCompany;
 
namespace GasolineBlend.BLL
{
    public class DefaultCompanyBLL
    {
        private DefaultCompanyDAL _acc = new DefaultCompanyDAL();
        public List<DefaultCompany> GetDefaultCompanyIsId(int UserId)
        {
            return _acc.GetDefaultCompanyIsId(UserId);
        }
        public bool UpdateDefaultCompany(DefaultCompany defaultCompany)
        {
            return _acc.UpdateDefaultCompany(defaultCompany);
        }
        public bool AddDefaultCompany(int UserId)
        {
            return _acc.AddDefaultCompany(UserId);
        }
 
 
 
    }
}