Example #1
0
 public void UpdateYearlyCommentRecord(YearlyComment yearlyComment)
 {
     _context.YearlyComment.Update(yearlyComment);
     _context.SaveChanges();
 }
Example #2
0
 public void AddYearlyCommentRecord(YearlyComment yearlyComment)
 {
     _context.YearlyComment.Add(yearlyComment);
     _context.SaveChanges();
 }