Esempio n. 1
0
 public List<CreateTemperatureSystem> getStudentTemperatureData(string studentID, string Year, string Month)
 {
     AdministrationDataBase aDB = new AdministrationDataBase();
     aDB.caseBTFunction();
     if (int.Parse(aDB._StaffhaveRoles[2]) == 1)
     {
         return aDB.getStudentTemperatureData(studentID, Year, Month);
     }
     return null;
 }