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