leo
2022-12-28 4a43e25a1803e63b501e401b6c7896a19c3ef3d7
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using GasolineBlend.DAL;
using GasolineBlend.Entity;
 
namespace GasolineBlend.BLL
{
   public class TryApplyBLL
    {
        private TryApplyDAL _acc=new TryApplyDAL();
        public List<TryApply> GetTryApplyList()
        {
            return _acc.GetTryApplyList();
        }
 
        public bool AddTryApply(TryApply tryApply)
        {
            return _acc.AddTryApply(tryApply);
        }
 
        public bool UpdateTryApply(TryApply tryApply)
        {
            return _acc.UpdateTryApply(tryApply);
        }
    }
}