49 lines
1.1 KiB
C#
49 lines
1.1 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 tj_yysjdBll
|
|
{
|
|
private tj_yysjdDal Dal = new tj_yysjdDal();
|
|
public List<tj_yysjd> GetAllList(string id)
|
|
{
|
|
return Dal.GetAllList(id);
|
|
}
|
|
public List<tj_yysjd> GetListByjg(string jgid)
|
|
{
|
|
return Dal.GetListByjg(jgid);
|
|
}
|
|
|
|
public object save(tj_yysjd model)
|
|
{
|
|
return Dal.save(model);
|
|
}
|
|
|
|
public object delete(string id)
|
|
{
|
|
return Dal.delete(id);
|
|
}
|
|
public int getCount(string key)
|
|
{
|
|
return Dal.getCount(key);
|
|
}
|
|
|
|
public List<tj_yysjd> getPage(int page, int pagesize, string key)
|
|
{
|
|
return Dal.getPage(page, pagesize, key);
|
|
}
|
|
|
|
public List<WeiXinDate> canSelected(string rq, string endtime)
|
|
{
|
|
//throw new NotImplementedException();
|
|
return Dal.canSelected(rq, endtime);
|
|
}
|
|
}
|
|
}
|