示例#1
0
 public void Update(ApplicationUserRoleMapping entity)
 {
     repository.Update(entity);
     unitOfWork.SaveChanges();
 }
示例#2
0
 public void Insert(ApplicationUserRoleMapping entity)
 {
     repository.Insert(entity);
     unitOfWork.SaveChanges();
 }