53 lines
1.2 KiB
C#
53 lines
1.2 KiB
C#
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<NCZSJModel> GetAllList(string id,string stauts)
|
|
{
|
|
return Dal.GetAllList(id,stauts);
|
|
}
|
|
|
|
public int getCount(string key)
|
|
{
|
|
//throw new NotImplementedException();
|
|
return Dal.getCount(key);
|
|
}
|
|
|
|
public List<NCZSJModel> 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<NCZSJModel> 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);
|
|
}
|
|
}
|
|
}
|