13 lines
317 B
C#
13 lines
317 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Exam
|
|
{
|
|
public interface IEXAM_ITEMBANK : IRepository<EXAM_ITEMBANK>
|
|
{
|
|
void Import(EXAM_ITEMBANK itembank, List<EXAM_ITEMBANKSUBJECT> subject);
|
|
|
|
decimal GenerateExam(decimal paperType, decimal eid);
|
|
}
|
|
}
|