示例#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 string GetCurrentSy()
 {
     SchoolYearService sys = new SchoolYearService();
        SchoolYear sy= sys.GetCurrentSY();
     return sy.SY;
 }
 public string GetCurrentSY()
 {
     SchoolYearService ss = new SchoolYearService();
     return ss.GetCurrentSY().SY;
 }
示例#4
0
 public SchoolYear GetCurrentSY()
 {
     SchoolYearService sy = new SchoolYearService();
     return sy.GetCurrentSY();
 }