コード例 #1
0
 public void Delete(Entities.SysPositionCategory category)
 {
     this.respository.Remove(category);
 }
コード例 #2
0
 public void Update(Entities.SysPositionCategory category)
 {
     this.respository.Update(category);
 }
コード例 #3
0
 public void Insert(Entities.SysPositionCategory category)
 {
     this.respository.Add(category);
 }