Esempio n. 1
0
 public Employee AddEmployee(Employee employee)
 {
     dbContext.Employees.Add(employee);
     dbContext.SaveChanges();
     return(employee);
 }
 public Comment CreateComment(Comment comment)
 {
     appDdContext.Comments.Add(comment);
     appDdContext.SaveChanges();
     return(comment);
 }