Esempio n. 1
0
 public void Update(ApplicationUserRoleMapping entity)
 {
     repository.Update(entity);
     unitOfWork.SaveChanges();
 }
Esempio n. 2
0
 public void Insert(ApplicationUserRoleMapping entity)
 {
     repository.Insert(entity);
     unitOfWork.SaveChanges();
 }