/// <summary>
 /// Desactiva un lote
 /// </summary>
 /// <param name="almacenInventarioLote"></param>
 internal void DesactivarLote(AlmacenInventarioLoteInfo almacenInventarioLote)
 {
     try
     {
         var almacenInventarioLoteDAL = new AlmacenInventarioLoteDAL();
         almacenInventarioLoteDAL.DesactivarLote(almacenInventarioLote);
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }