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