Ejemplo n.º 1
0
 public Venta Single(int id)
 {
     try
     {
         var venta = repository.Single(id);
         return(venta);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }