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