35 lines
741 B
C#
35 lines
741 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_maintBll
|
|||
|
|
{
|
|||
|
|
public charge_maintDal Dal = new charge_maintDal();
|
|||
|
|
public int getCount()
|
|||
|
|
{
|
|||
|
|
return Dal.getCount();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public List<charge_maintModel> GetAllList(string id)
|
|||
|
|
{
|
|||
|
|
return Dal.GetAllList(id);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public List<charge_maintModel> getList(int page, int pagesize)
|
|||
|
|
{
|
|||
|
|
return Dal.getList(page, pagesize);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public object save(charge_maintModel model)
|
|||
|
|
{
|
|||
|
|
return Dal.save(model);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|