Exemplo n.º 1
0
 public int Count(params object[] parameters)
 {
     try
     {
         return(repository.Count(parameters));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Exemplo n.º 2
0
 public int Count(Expression <Func <Tabla, bool> > where)
 {
     return(_tablaRepository.Count(where));
 }