61 lines
1.4 KiB
C#
61 lines
1.4 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 ym_yymxBll
|
|
{
|
|
private ym_yymxDal Dal = new ym_yymxDal();
|
|
public List<ym_yymx> GetAllList(string id)
|
|
{
|
|
return Dal.GetAllList(id);
|
|
}
|
|
|
|
public List<dicsModel> GetSjd(string yyrq)
|
|
{
|
|
return Dal.GetSjd(yyrq);
|
|
}
|
|
public List<ym_yymx> GetList(string where)
|
|
{
|
|
return Dal.GetList(where);
|
|
}
|
|
|
|
public object save(ym_yymx 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<ym_yymx> getPage(int page, int pagesize, string key)
|
|
{
|
|
return Dal.getPage(page, pagesize, key);
|
|
}
|
|
|
|
public int getyyCount(string xm, string yyrq)
|
|
{
|
|
return Dal.getyyCount(xm, yyrq);
|
|
}
|
|
|
|
public List<ym_yymx> getYYList(string xm, string yyrq,int page,int pagesize)
|
|
{
|
|
return Dal.getYYList(xm, yyrq, page, pagesize);
|
|
}
|
|
public ym_yymx GeYYListByYyRq(string yyrq,string openid) {
|
|
return Dal.GeYYListByYyRq(yyrq, openid);
|
|
}
|
|
}
|
|
}
|