public void AddAssessment(Assessment newAssessment) { try { _context.Add(newAssessment); } catch (Exception ex) { _logger.LogError("Cannot get data", ex); } }
public void AddTheme(Theme newTheme) { try { _context.Add(newTheme); } catch (Exception ex) { _logger.LogError("Cannot insert Theme", ex); } }