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 szyd_zjsysqBll { private szyd_zjsysqDal Dal = new szyd_zjsysqDal(); public int getCountLevel(string where) { return Dal.getCountLevel(where); } public List getPageLevel(int page, int pagesize, string where) { return Dal.getPageLevel(page, pagesize, where); } public List GetAllList(string id) { return Dal.GetAllList(id); } public object szyd_sqdSave(string id, int ksid, string ksmc, int sqrid, string sqr, string je, string nr, string zjxz, string fyly1, string fyly2, string cgfs, string yjsysj, int zt, string del) { return Dal.szyd_sqdSave(id, ksid, ksmc, sqrid, sqr, je, nr, zjxz, fyly1, fyly2, cgfs, yjsysj, zt, del); } public object szyd_sqdSave2(string id, int ksid, string ksmc, int sqrid, string sqr, string je, string nr, string zjxz, string fyly1, string fyly2, string cgfs, string yjsysj, int zt) { return Dal.szyd_sqdSave2(id, ksid, ksmc, sqrid, sqr, je, nr, zjxz, fyly1, fyly2, cgfs, yjsysj, zt); } public object opQd(string id, string sort, string sortid, int del) { return Dal.opQd(id, sort, sortid, del); } public object delete(string id) { return Dal.delete(id); } public object opSzydSp(string id, int sprid, string spr, string yj, bool ty) { return Dal.opSzydSp(id, sprid, spr, yj, ty); } public object opSpOneself(string id, int sprid, string spr, string yj, bool ty, string zw) { return Dal.opSpOneself(id, sprid, spr, yj, ty, zw); } } }