private void GetActiveSchoolYear()
 {
     if (schoolYearBl.GetActive())
     {
         return;
     }
     MessageBox.Show("There is no Active School Year.", "No Active School Year", MessageBoxButtons.OK, MessageBoxIcon.Error);
     this.Close();
 }
Ejemplo n.º 2
0
 private bool GetActiveSchoolYear()
 {
     if (schoolYearBl.GetActive())
     {
         return(true);
     }
     MessageBox.Show("There is no Active School Year.\nPlease set an active School Year in the School Years tab.",
                     "No Active School Year", MessageBoxButtons.OK, MessageBoxIcon.Error);
     return(false);
 }