35 lines
813 B
C#
35 lines
813 B
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 charge_refund_detailBll
|
|
{
|
|
public charge_refund_detailDal Dal = new charge_refund_detailDal();
|
|
public int getCount(string key)
|
|
{
|
|
return Dal.getCount(key);
|
|
}
|
|
|
|
public List<charge_refund_detailModel> getList(int page, int pagesize, string key)
|
|
{
|
|
return Dal.getList(page, pagesize, key);
|
|
}
|
|
|
|
public List<charge_refund_detailModel> GetAllList(string id)
|
|
{
|
|
return Dal.GetAllList(id);
|
|
}
|
|
|
|
public object save(charge_refund_detailModel ct)
|
|
{
|
|
return Dal.save(ct);
|
|
}
|
|
}
|
|
}
|