using System.Collections.Generic; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Exam { public interface IEXAM_ITEMBANK : IRepository { void Import(EXAM_ITEMBANK itembank, List subject); decimal GenerateExam(decimal paperType, decimal eid); } }