49 lines
2.3 KiB
C#
49 lines
2.3 KiB
C#
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 chuchai_sqBll
|
|
{
|
|
private chuchai_sqDal Dal = new chuchai_sqDal();
|
|
public int getCountLevel(string where)
|
|
{
|
|
return Dal.getCountLevel(where);
|
|
}
|
|
public List<chuchai_sqModel> getPageLevel(int page, int pagesize, string where)
|
|
{
|
|
return Dal.getPageLevel(page, pagesize, where);
|
|
}
|
|
|
|
public List<chuchai_sqModel> GetAllList(string id)
|
|
{
|
|
return Dal.GetAllList(id);
|
|
}
|
|
public object chuchai_sqSave(string id, int ksid, string ksmc, int sqrid, string sqr, string je, string cclx, string ccrs, string ccry, string ccryids, string filepath, string sy, string ccsj, string ccts, string ccdd, string cclb, string areaid1, string areaid2, string areaid3, string area, string fyly1, string fyly2, string fyly, string fydh, string fydhs, string fydh2, int zt)
|
|
{
|
|
return Dal.chuchai_sqSave(id, ksid, ksmc, sqrid, sqr, je, cclx, ccrs, ccry, ccryids, filepath, sy, ccsj, ccts, ccdd, cclb, areaid1, areaid2, areaid3, area, fyly1, fyly2, fyly, fydh, fydhs, fydh2, zt);
|
|
}
|
|
public object CcSave2(string id, int ksid, string ksmc, int sqrid, string sqr, string je, string cclx, string ccrs, string ccry, string ccryids, string filepath, string sy, string ccsj, string ccts, string ccdd, string cclb, string areaid1, string areaid2, string areaid3, string area, string fyly1, string fyly2, string fyly, string fydh, string fydhs, string fydh2, int zt)
|
|
{
|
|
return Dal.CcSave2(id, ksid, ksmc, sqrid, sqr, je, cclx, ccrs, ccry, ccryids, filepath, sy, ccsj, ccts, ccdd, cclb, areaid1, areaid2, areaid3, area, fyly1, fyly2, fyly, fydh, fydhs, fydh2, zt);
|
|
}
|
|
public object delete(string id)
|
|
{
|
|
return Dal.delete(id);
|
|
}
|
|
public object opCcSp(string id, int sprid, string spr, string yj, bool ty)
|
|
{
|
|
return Dal.opCcSp(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);
|
|
}
|
|
}
|
|
}
|