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