Пример #1
0
        public ECanalTipo actualizartipocanal(int ichtype_id, string schtype_nombre, string schtype_descripcion, bool bchtype_status,
                                              string schtype_modiby)
        {
            ECanalTipo oecanaltipo = new ECanalTipo();

            oecanaltipo = odcanaltipo.actualizartipocanal(ichtype_id, schtype_nombre, schtype_descripcion, bchtype_status, schtype_modiby);
            return(oecanaltipo);
        }
Пример #2
0
        public ECanalTipo registrartipocanal(string schtype_nombre, string schtype_descripcion, bool bchtype_status,
                                             string schtype_createby)
        {
            ECanalTipo oecanaltipo = new ECanalTipo();

            oecanaltipo = odcanaltipo.registrartipocanal(schtype_nombre, schtype_descripcion, bchtype_status, schtype_createby);
            return(oecanaltipo);
        }
Пример #3
0
        public ECanalTipo actualizartipocanal(int ichtype_id, string schtype_nombre, string schtype_descripcion, bool bchtype_status,
                                              string schtype_modiby)
        {
            oConn = new Conexion(1);
            ECanalTipo oecanaltipo = new ECanalTipo();
            string     response    = oConn.ejecutarEscalar("UP_WEBXPLORA_AD_ACTUALIZA_CHANNELTYPE", ichtype_id, schtype_nombre, schtype_descripcion, bchtype_status, schtype_modiby);

            return(oecanaltipo);
        }
Пример #4
0
        public ECanalTipo registrartipocanal(string schtype_nombre, string schtype_descripcion, bool bchtype_status,
                                             string schtype_createby)
        {
            oConn = new Conexion(1);
            ECanalTipo oecanaltipo = new ECanalTipo();
            string     ichtype_id  = oConn.ejecutarEscalar("UP_WEBXPLORA_AD_REGISTER_CHANNELTYPE", schtype_nombre, schtype_descripcion, bchtype_status, schtype_createby);

            oecanaltipo.Ichtype_id          = Convert.ToInt32(ichtype_id);
            oecanaltipo.Schtype_nombre      = schtype_nombre;
            oecanaltipo.Schtype_descripcion = schtype_descripcion;
            oecanaltipo.Bchtype_status      = bchtype_status;
            oecanaltipo.Schtype_createby    = schtype_createby;
            return(oecanaltipo);
        }