IInschoolOtherStatusServices.cs 290 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.CommonLogic.Students.HighBaseTable
  6. {
  7. public interface IInschoolOtherStatusServices
  8. {
  9. void Update(int SchoolYear);
  10. List<string> SchoolYearDropDownList();
  11. }
  12. }