IFacultymajorStudentCountServices.cs 250 B

123456789101112
  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 IFacultymajorStudentCountServices
  8. {
  9. void GenerateReport(int year);
  10. }
  11. }