Esempio n. 1
0
 public List <PermissionValues> getpermissionValues(PermissionValueQueryModel ValueModel)
 {
     try
     {
         InforWhatIFRequesDBOperation ValueModelObj = new InforWhatIFRequesDBOperation();
         return(ValueModelObj.getPermissionsValues(ValueModel));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Esempio n. 2
0
 public List <RolesFromConnection> getRoles(RolesQueryModel RoleModel)
 {
     try
     {
         InforWhatIFRequesDBOperation WhatIFReqObj = new InforWhatIFRequesDBOperation();
         return(WhatIFReqObj.getRoles(RoleModel));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Esempio n. 3
0
 public List <Permission> getPermission(PermissionQueryModel PermissionModel)
 {
     try
     {
         InforWhatIFRequesDBOperation PermissionObj = new InforWhatIFRequesDBOperation();
         return(PermissionObj.getPermissions(PermissionModel));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Esempio n. 4
0
 public List <Users> getUsers(UserQueryModel model)
 {
     try
     {
         InforWhatIFRequesDBOperation WhatIFReqObj = new InforWhatIFRequesDBOperation();
         return(WhatIFReqObj.getUsers(model));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }