Ejemplo n.º 1
0
        public string GetCurrentSy()
        {
            SchoolYearService sys = new SchoolYearService();
            SchoolYear        sy  = sys.GetCurrentSY();

            return(sy.SY);
        }
Ejemplo n.º 2
0
        public List<GradeSection> GetAllGradeSections()
        {
            SchoolYearService sys = new SchoolYearService();

            string currentSY = String.Empty;
            currentSY = sys.GetCurrentSY().SY;
            return ToGradeSectionList(gsLogic.GetAllGradeSections(currentSY));
        }
Ejemplo n.º 3
0
        public List <GradeSection> GetAllGradeSections()
        {
            SchoolYearService sys = new SchoolYearService();

            string currentSY = String.Empty;

            currentSY = sys.GetCurrentSY().SY;
            return(ToGradeSectionList(gsLogic.GetAllGradeSections(currentSY)));
        }
Ejemplo n.º 4
0
        public string GetCurrentSY()
        {
            SchoolYearService ss = new SchoolYearService();

            return(ss.GetCurrentSY().SY);
        }
Ejemplo n.º 5
0
 public string GetCurrentSy()
 {
     SchoolYearService sys = new SchoolYearService();
     SchoolYear sy = sys.GetCurrentSY();
     return sy.SY;
 }
Ejemplo n.º 6
0
        public SchoolYear GetCurrentSY()
        {
            SchoolYearService sy = new SchoolYearService();

            return(sy.GetCurrentSY());
        }
Ejemplo n.º 7
0
 public string GetCurrentSY()
 {
     SchoolYearService ss = new SchoolYearService();
     return ss.GetCurrentSY().SY;
 }
Ejemplo n.º 8
0
 public SchoolYear GetCurrentSY()
 {
     SchoolYearService sy = new SchoolYearService();
     return sy.GetCurrentSY();
 }