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);
|
}
|
}
|
}
|