示例#1
0
文件: VentaBL.cs 项目: joedayz/joerp
 public Venta Single(int id)
 {
     try
     {
         var venta = repository.Single(id);
         return(venta);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }