41 lines
1022 B
C#
41 lines
1022 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 DoctorInquiryBll
|
|
{
|
|
public DoctorInquiryDal Dal = new DoctorInquiryDal();
|
|
public List<DoctorInquiryModel> GetAllList(string id,string stauts)
|
|
{
|
|
return Dal.GetAllList(id,stauts);
|
|
}
|
|
|
|
public int getCount(string key)
|
|
{
|
|
//throw new NotImplementedException();
|
|
return Dal.getCount(key);
|
|
}
|
|
|
|
public Object saveExam(String key,string pNum, String type,ERPUser user)
|
|
{
|
|
return Dal.saveExam(key, pNum, type,user);
|
|
}
|
|
|
|
public List<DoctorInquiryModel> getList(int page, int pagesize, string key)
|
|
{
|
|
return Dal.getList(page, pagesize, key);
|
|
}
|
|
|
|
public object save(DoctorInquiryModel cpm, ERPUser user)
|
|
{
|
|
return Dal.save(cpm, user);
|
|
}
|
|
}
|
|
}
|