示例#1
0
        public List<GradeSection> GetAllGradeSections()
        {
            SchoolYearService sys = new SchoolYearService();

            string currentSY = String.Empty;
            currentSY = sys.GetCurrentSY().SY;
               return ToGradeSectionList(gsLogic.GetAllGradeSections(currentSY));
        }
示例#2
0
 public List<SchoolYear> GetLastFiveSY()
 {
     SchoolYearService sy = new SchoolYearService();
     return sy.GetAllSY();
 }
示例#3
0
 public string GetCurrentSy()
 {
     SchoolYearService sys = new SchoolYearService();
        SchoolYear sy= sys.GetCurrentSY();
     return sy.SY;
 }
示例#4
0
 public List<SchoolYear> GetAllSchoolYears()
 {
     SchoolYearService s = new SchoolYearService();
     return s.GetAllSY();
 }
 public string GetCurrentSY()
 {
     SchoolYearService ss = new SchoolYearService();
     return ss.GetCurrentSY().SY;
 }
示例#6
0
 public SchoolYear GetCurrentSY()
 {
     SchoolYearService sy = new SchoolYearService();
     return sy.GetCurrentSY();
 }