예제 #1
0
 public Consultor_TO GetByCode(Consultor_TO pTO)
 {
     try
     {
         return(new Consultor_DAO().GetByCode(pTO));
     }
     catch (Exception)
     {
         throw;
     }
 }
예제 #2
0
        internal bool Save(Consultor_TO pTO)
        {
            SqlConnection connection = null;

            try
            {
                connection = new SqlConnection(ConfigurationManager.ConnectionStrings["DBConn"].ConnectionString);
                connection.Open();
            }
            catch (Exception)
            {
                throw;
            }

            SqlCommand command = null;
            bool       retorno = false;

            string sql = "INSERT INTO vcrm_consultor" +
                         " ( con_codigo " +
                         ", con_codstur " +
                         ", con_nome " +
                         ", con_virtual) " +
                         "VALUES " +
                         "( @con_codigo " +
                         " , @con_codstur " +
                         " , @con_nome " +
                         " , @con_virtual ) ";

            try
            {
                command = new SqlCommand(sql, connection);
                command.Parameters.AddWithValue("@con_codigo", pTO.con_codigo);
                command.Parameters.AddWithValue("@con_codstur", pTO.con_codstur);
                command.Parameters.AddWithValue("@con_nome", pTO.con_nome);
                command.Parameters.AddWithValue("@con_virtual", pTO.con_virtual);
                command.ExecuteNonQuery();
                retorno = true;
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                command.Dispose();
                connection.Close();
                connection.Dispose();
            }

            return(retorno);
        }
예제 #3
0
        public bool Delete(Consultor_TO pTO)
        {
            bool retorno = false;

            try
            {
                retorno = new Consultor_DAO().Delete(pTO);
            }
            catch (Exception)
            {
                throw;
            }
            return(retorno);
        }
예제 #4
0
        internal List <Consultor_TO> SearchAll(string pCondicao)
        {
            SqlConnection connection = null;

            try
            {
                connection = new SqlConnection(ConfigurationManager.ConnectionStrings["DBConn"].ConnectionString);
                connection.Open();
            }
            catch (Exception)
            {
                throw;
            }

            SqlCommand    command = null;
            SqlDataReader reader  = null;

            string sql = " SELECT * FROM vcrm_consultor ";

            List <Consultor_TO> collection = new List <Consultor_TO>();

            try
            {
                command = new SqlCommand(sql, connection);
                reader  = command.ExecuteReader();

                while (reader.Read())
                {
                    Consultor_TO ConsultorTO = new Consultor_TO();
                    ConsultorTO.con_codigo  = Convert.ToInt32(reader["con_codigo"]);
                    ConsultorTO.con_codstur = Convert.ToInt32(reader["con_codstur"]);
                    ConsultorTO.con_nome    = Convert.ToString(reader["con_nome"]);
                    ConsultorTO.con_virtual = Convert.ToInt32(reader["con_virtual"]);
                    collection.Add(ConsultorTO);
                }
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                reader.Close();
                command.Dispose();
                connection.Close();
                connection.Dispose();
            }
            return(collection);
        }
예제 #5
0
        public List <Consultor_TO> SearchAll(Consultor_TO pTO)
        {
            string condicao = "";

            try
            {
// implementa a condição de procura
                condicao += "";
                return(new Consultor_DAO().SearchAll(condicao));
            }
            catch (Exception)
            {
                throw;
            }
        }
예제 #6
0
        internal Consultor_TO GetByCode(Consultor_TO pTO)
        {
            SqlConnection connection = null;

            try
            {
                connection = new SqlConnection(ConfigurationManager.ConnectionStrings["DBConn"].ConnectionString);
                connection.Open();
            }
            catch (Exception)
            {
                throw;
            }
            SqlCommand    command = null;
            SqlDataReader reader  = null;

            string sql = " SELECT * FROM vcrm_consultor ";

            try
            {
                command = new SqlCommand(sql, connection);

                reader = command.ExecuteReader();

                if (reader.Read())
                {
                    pTO.con_codigo  = Convert.ToInt32(reader["con_codigo"]);
                    pTO.con_codstur = Convert.ToInt32(reader["con_codstur"]);
                    pTO.con_nome    = Convert.ToString(reader["con_nome"]);
                    pTO.con_virtual = Convert.ToInt32(reader["con_virtual"]);
                }
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                reader.Close();
                command.Dispose();
                connection.Close();
                connection.Dispose();
            }

            return(pTO);
        }
예제 #7
0
        public bool Save(bool pOpcao, Consultor_TO pTO)
        {
            bool retorno = false;

            try
            {
                if (pOpcao)
                {
                    retorno = new Consultor_DAO().Save(pTO);
                }
                else
                {
                    retorno = new Consultor_DAO().Update(pTO);
                }
            }
            catch (Exception)
            {
                throw;
            }
            return(retorno);
        }
예제 #8
0
        internal bool Delete(Consultor_TO pTO)
        {
            SqlConnection connection = null;

            try
            {
                connection = new SqlConnection(ConfigurationManager.ConnectionStrings["DBConn"].ConnectionString);
                connection.Open();
            }
            catch (Exception)
            {
                throw;
            }

            SqlCommand command = null;
            bool       retorno = false;

            string sql = "DELETE FROM vcrm_consultor" +
                         "WHERE ... ";

            try
            {
                command = new SqlCommand(sql, connection);

                command.ExecuteNonQuery();
                retorno = true;
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                command.Dispose();
                connection.Close();
                connection.Dispose();
            }

            return(retorno);
        }