StudentServices.cs 578 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using EMIS.ViewModel;
  6. namespace EMIS.ExtensionLogic.ServiceLogic.StudentManage
  7. {
  8. public class StudentServices : EMIS.CommonLogic.StudentManage.StudentProfile.StudentServices
  9. {
  10. /// <summary>
  11. /// 查询默认的学习形式(广东松山)
  12. /// 注:默认为FullTime
  13. /// </summary>
  14. /// <returns></returns>
  15. public override int? GetDefaultLearnformForList()
  16. {
  17. return (int)CF_Learningform.FullTime;
  18. }
  19. }
  20. }