36 lines
817 B
C#
36 lines
817 B
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 crbsjBll
|
|
{
|
|
public crbsjDal Dal = new crbsjDal();
|
|
public List<crbsjModel> GetAllList(string id,string stauts)
|
|
{
|
|
return Dal.GetAllList(id,stauts);
|
|
}
|
|
|
|
public int getCount(string key)
|
|
{
|
|
//throw new NotImplementedException();
|
|
return Dal.getCount(key);
|
|
}
|
|
|
|
public List<crbsjModel> getList(int page, int pagesize, string key)
|
|
{
|
|
return Dal.getList(page, pagesize, key);
|
|
}
|
|
|
|
public object save(crbsjModel cpm, ERPUser user)
|
|
{
|
|
return Dal.save(cpm, user);
|
|
}
|
|
}
|
|
}
|