示例#1
0
文件: RolBL.cs 项目: joedayz/joerp
 public int Count(params object[] parameters)
 {
     try
     {
         return(repository.Count(parameters));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
示例#2
0
 public int Count(Expression <Func <Rol, bool> > where)
 {
     return(_rolRepository.Count(where));
 }