/// <summary>
 /// Create a new rol object.
 /// </summary>
 /// <param name="rOL_ID">Initial value of the ROL_ID property.</param>
 /// <param name="rOL_NOMBRE">Initial value of the ROL_NOMBRE property.</param>
 /// <param name="cREADO_POR">Initial value of the CREADO_POR property.</param>
 /// <param name="fECHA_CREACION">Initial value of the FECHA_CREACION property.</param>
 public static rol Createrol(global::System.Int32 rOL_ID, global::System.String rOL_NOMBRE, global::System.String cREADO_POR, global::System.DateTime fECHA_CREACION)
 {
     rol rol = new rol();
     rol.ROL_ID = rOL_ID;
     rol.ROL_NOMBRE = rOL_NOMBRE;
     rol.CREADO_POR = cREADO_POR;
     rol.FECHA_CREACION = fECHA_CREACION;
     return rol;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the roles EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToroles(rol rol)
 {
     base.AddObject("roles", rol);
 }
示例#3
0
        /// <summary>
        /// Inserta el rol.
        /// </summary>
        /// <param name="ROL_ID"></param>
        /// <param name="ROL_NOMBRE"></param>
        /// <param name="ROL_DESCRIPCION"></param>
        /// <param name="CREADO_POR"></param>
        /// <param name="FECHA_CREACION"></param>
        /// <param name="MODIFICADO_POR"></param>
        /// <param name="FECHA_MODIFICACION"></param>
        public void InsertarRol
            (int ROL_ID,
            string ROL_NOMBRE,
            string ROL_DESCRIPCION,
            string CREADO_POR,
            DateTime FECHA_CREACION,
            string MODIFICADO_POR,
            DateTime FECHA_MODIFICACION)
        {
            try
            {
                using (var db = new colinasEntities())
                {
                    rol role = new rol();
                    
                    role.ROL_NOMBRE = ROL_NOMBRE;
                    role.ROL_DESCRIPCION = ROL_DESCRIPCION;
                    role.CREADO_POR = CREADO_POR;
                    role.FECHA_CREACION = DateTime.Today;
                    role.MODIFICADO_POR = CREADO_POR;
                    role.FECHA_MODIFICACION = role.FECHA_CREACION;

                    db.roles.AddObject(role);
                    db.SaveChanges();
                }
            }
            catch (Exception ex)
            {
                log.Fatal("Error fatal al insertar rol.", ex);
                throw;
            }
        }