public bool SubmitAttendance(string cardID)
 {
     return(_studentAttendanceService.UpdateStudentAttendanceByStudentCardID(cardID));
 }
 public IActionResult MarkAttendance(string cardID)
 {
     return(Ok(_studentAttendanceService.UpdateStudentAttendanceByStudentCardID(cardID)));
 }