tijian_tieying/web/dccdc.BLL/ProfessionalChargeProjectBll.cs
2025-02-20 12:14:39 +08:00

25 lines
566 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using dccdc.DAL;
using dccdc.Models;
namespace dccdc.BLL
{
public class ProfessionalChargeProjectBll
{
public ProfessionalChargeProjectDal dal = new ProfessionalChargeProjectDal();
public bool Update(ProfessionalChargeProjectModel model)
{
return dal.Update(model);
}
public bool Add(ProfessionalChargeProjectModel model)
{
return dal.Add(model);
}
}
}