Esempio n. 1
0
 public int ObtenerPedidosProgramadosPorLoteCantidadProgramada(int almacenInventarioLoteId)
 {
     try
     {
         Logger.Info();
         var pedidosBl = new PedidosBL();
         int result    = pedidosBl.ObtenerPedidosProgramadosPorLoteCantidadProgramada(almacenInventarioLoteId);
         return(result);
     }
     catch (ExcepcionGenerica)
     {
         throw;
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }