Example #1
0
 public IList <Compra> BuscarCompras(int idOperacion, int idProveedor, string desde, string hasta, string documento)
 {
     try
     {
         return(repository.BuscarCompras(idOperacion, idProveedor, desde, hasta, documento));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }