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