コード例 #1
0
 public bool Update(IRightEntity entity)
 {
     return(false);
 }
コード例 #2
0
 public bool Add(IRightEntity entity)
 {
     return(false);
 }
コード例 #3
0
 public bool Remove(IRightEntity entity)
 {
     return(false);
 }
コード例 #4
0
ファイル: FunctionRight.cs プロジェクト: RaoLeigf/msyh
 public bool Update(IRightEntity entity)
 {
     return(services.RightUpdate(entity));
 }
コード例 #5
0
 public bool Update(IRightEntity entity)
 {
     return(manager.FieldRight.Update(entity));
 }
コード例 #6
0
ファイル: FunctionRight.cs プロジェクト: RaoLeigf/msyh
 public bool Remove(IRightEntity entity)
 {
     return(services.RightDelete(entity));
 }
コード例 #7
0
ファイル: FunctionRight.cs プロジェクト: RaoLeigf/msyh
 public bool Add(IRightEntity entity)
 {
     return(services.RightAdd(entity));
 }
コード例 #8
0
 /// <summary>
 /// 功能权限新增
 /// </summary>
 /// <param name="entity">功能权限涉及的三张表需要填写的信息</param>
 /// <returns></returns>
 public bool Add(IRightEntity entity)
 {
     return(rightFacad.Add(entity));
 }
コード例 #9
0
 /// <summary>
 /// 功能权限更新
 /// </summary>
 /// <param name="entity">功能权限涉及的三张表需要填写的信息</param>
 /// <returns></returns>
 public bool Update(IRightEntity entity)
 {
     return(rightFacad.Update(entity));
 }
コード例 #10
0
 /// <summary>
 /// 功能权限删除
 /// </summary>
 /// <param name="entity">功能权限涉及的三张表需要填写的信息</param>
 /// <returns></returns>
 public bool Remove(IRightEntity entity)
 {
     return(rightFacad.Remove(entity));
 }