/// <summary> /// Crea un registro en almacen inventario lote. /// </summary> /// <param name="almacenInventarioLoteInfo"></param> /// <param name="almacenInventarioInfo"></param> /// <returns></returns> internal int Crear(AlmacenInventarioLoteInfo almacenInventarioLoteInfo, AlmacenInventarioInfo almacenInventarioInfo) { try { Logger.Info(); var almacenInventarioDal = new AlmacenInventarioLoteDAL(); int result = almacenInventarioDal.Crear(almacenInventarioLoteInfo, almacenInventarioInfo); return(result); } catch (ExcepcionGenerica) { throw; } catch (Exception ex) { Logger.Error(ex); throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex); } }