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 NCZSJBll { public NCZSJDal Dal = new NCZSJDal(); public List GetAllList(string id,string stauts) { return Dal.GetAllList(id,stauts); } public int getCount(string key) { //throw new NotImplementedException(); return Dal.getCount(key); } public List getList(int page, int pagesize, string key) { return Dal.getList(page, pagesize, key); } public object save(NCZSJModel cpm, ERPUser user) { return Dal.save(cpm, user); } public int getCountgxb(string key) { //throw new NotImplementedException(); return Dal.getCountgxb(key); } public List getListgxb(int page, int pagesize, string key) { return Dal.getListgxb(page, pagesize, key); } public object savegxb(NCZSJModel cpm, ERPUser user) { return Dal.savegxb(cpm, user); } } }