コード例 #1
0
 public static string GuardarEntradaSalidaZilmaxManejo(List <LoteInfo> lotesZilmax)
 {
     try
     {
         var seguridad = HttpContext.Current.Session["Seguridad"] as SeguridadInfo;
         if (seguridad != null)
         {
             var lotePL = new LotePL();
             lotesZilmax.ForEach(usu => usu.UsuarioModificacionID = seguridad.Usuario.UsuarioID);
             lotePL.GuardarEntradaSalidaZilmax(lotesZilmax);
         }
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw;
     }
     return("Ok");
 }