IInschoolAgeStatusServices.cs 297 B

1234567891011121314
  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 IInschoolAgeStatusServices
  8. {
  9. void Update(int SchoolYear);
  10. List<string> SchoolYearDropDownList();
  11. }
  12. }