/// <summary>Implements <see cref="ISys_MenuInRoleService.Update"/></summary>
 public void Update(Sys_MenuInRole obj)
 {
     if (obj == null) throw new ArgumentNullException("obj");
     _repository.Update(obj);
 }
 /// <summary>Implements <see cref="ISys_MenuInRoleRepository.Update"/></summary>
 public void Update(Sys_MenuInRole obj)
 {
     if (obj == null) throw new ArgumentNullException("obj");
     String stmtId = "Sys_MenuInRole.Update";
     SqlMapper.Update(stmtId, obj);
 }
 /// <summary>Implements <see cref="ISys_MenuInRoleService.Insert"/></summary>
 public void Insert(Sys_MenuInRole obj)
 {
     if (obj == null) throw new ArgumentNullException("obj");
     _repository.Insert(obj);
 }
 /// <summary>Implements <see cref="ISys_MenuInRoleRepository.Insert"/></summary>
 public void Insert(Sys_MenuInRole obj)
 {
     if (obj == null) throw new ArgumentNullException("obj");
     String stmtId = "Sys_MenuInRole.Insert";
     SqlMapper.Insert(stmtId, obj);
 }