예제 #1
0
 public void Edit(Career career)
 {
     _repo.Update(career);
     _repo.Save();
 }
예제 #2
0
 public void AddCareer(Career career)
 {
     _repo.Insert(career);
     _repo.Save();
 }