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