22 lines
534 B
C#
22 lines
534 B
C#
|
|
using CYQ.Data;
|
|||
|
|
using CYQ.Data.Table;
|
|||
|
|
using dccdc.DAL;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace dccdc.BLL
|
|||
|
|
{
|
|||
|
|
public class Exam_ProcessBLL
|
|||
|
|
{
|
|||
|
|
private examination_processDal dal = new examination_processDal();
|
|||
|
|
public MDataTable GetPersonList_NoCompleteByGroupID(string groupid, string page = "1", string limit = "30")
|
|||
|
|
{
|
|||
|
|
return dal.GetPersonList_NoCompleteByGroupID(groupid,page,limit);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|