Example #1
0
 /// <summary>
 /// Create a new LOG_MANUAL object.
 /// </summary>
 /// <param name="id">Initial value of the id property.</param>
 /// <param name="idTipoCargue">Initial value of the idTipoCargue property.</param>
 /// <param name="idCamion">Initial value of the idCamion property.</param>
 /// <param name="idUsuario">Initial value of the idUsuario property.</param>
 /// <param name="hora">Initial value of the hora property.</param>
 /// <param name="idPuerta">Initial value of the idPuerta property.</param>
 public static LOG_MANUAL CreateLOG_MANUAL(global::System.Int32 id, global::System.Int32 idTipoCargue, global::System.Int32 idCamion, global::System.Int32 idUsuario, global::System.DateTime hora, global::System.Int32 idPuerta)
 {
     LOG_MANUAL lOG_MANUAL = new LOG_MANUAL();
     lOG_MANUAL.id = id;
     lOG_MANUAL.idTipoCargue = idTipoCargue;
     lOG_MANUAL.idCamion = idCamion;
     lOG_MANUAL.idUsuario = idUsuario;
     lOG_MANUAL.hora = hora;
     lOG_MANUAL.idPuerta = idPuerta;
     return lOG_MANUAL;
 }
Example #2
0
 /// <summary>
 /// Deprecated Method for adding a new object to the LOG_MANUAL EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToLOG_MANUAL(LOG_MANUAL lOG_MANUAL)
 {
     base.AddObject("LOG_MANUAL", lOG_MANUAL);
 }
Example #3
0
        /// <summary>
        /// Guarda log de las enturnaciones/desenturnaciones manuales
        /// </summary>
        /// <param name="idTipoCargue">id del tipo de cargue</param>
        /// <param name="idCamion">id del camion</param>
        /// <param name="idUsuario">id del usuario que realiza la operaciĆ³n</param>
        /// <param name="hora">hora en la que se enturna/desenturna el camion</param>
        /// <param name="idPuerta">id de la puerta donde se realiza la operacio</param>
        public void RegistrarLogManual(int idTipoCargue, int idCamion, int idUsuario, DateTime hora, int idPuerta)
        {
            LOG_MANUAL objLog = new LOG_MANUAL();
            objLog.idTipoCargue = idTipoCargue;
            objLog.idCamion = idCamion;
            objLog.idUsuario = idUsuario;
            objLog.hora = hora;
            objLog.idPuerta = idPuerta;

            this.objDAO.Crear(Enumeraciones.Entidad.LOG_MANUAL, objLog);
        }