Exemplo n.º 1
0
        public List <UsuariosModel> Log(string Log_evento)
        {
            List <UsuariosModel> retorno = new List <UsuariosModel>();

            DAL.DAL objDAL5 = new DAL.DAL();

            string sql = $"insert into projeto_mutant.log (descricao, data) values('{Log_evento}','{DateTime.Now}')";

            objDAL5.ExecutarComandoSQL(sql);

            return(retorno);
        }
Exemplo n.º 2
0
        public List <Desafio_1> PesquisarItem()
        {
            List <Desafio_1> lista   = new List <Desafio_1>();
            List <Desafio_1> lista2  = new List <Desafio_1>();
            List <Desafio_1> retorno = new List <Desafio_1>();

            DAL.DAL   objDAL = new DAL.DAL();
            Desafio_1 item   = new Desafio_1();
            Desafio_1 item2  = new Desafio_1();


            string    sql = $"select * from projeto_wipro.desafio_1 order by id desc limit 1";
            DataTable dt  = objDAL.RetDataTable(sql);

            if (dt.Rows.Count > 0)
            {
                retorno = JsonConvert.DeserializeObject <List <Desafio_1> >(dt.Rows[0]["json"].ToString());

                int id = int.Parse(dt.Rows[0]["id"].ToString());

                if (retorno.Count > 0)
                {
                    for (int i = 0; i < retorno.Count; i++)
                    {
                        item = new Desafio_1()
                        {
                            moeda       = retorno[i].moeda.ToString(),
                            data_inicio = retorno[i].data_inicio.ToString(),
                            data_fim    = retorno[i].data_fim.ToString(),
                        };

                        lista.Add(item);
                    }

                    string sql2 = $"delete from projeto_wipro.desafio_1 where id = '{id}'";
                    objDAL.ExecutarComandoSQL(sql2);

                    return(lista);
                }
            }
            else
            {
                item2 = new Desafio_1()
                {
                    Mensagem = "Não existem objetos a serem retornados!"
                };
                lista2.Add(item2);
                return(lista2);
            }

            return(lista);
        }
Exemplo n.º 3
0
        public List <Desafio_1> SalvarItem(Desafio_1[] dados)
        {
            List <Desafio_1> retorno = new List <Desafio_1>();

            DAL.DAL objDAL = new DAL.DAL();

            string json = JsonConvert.SerializeObject(dados);


            string sql = $"insert into projeto_wipro.desafio_1(json,data) values('{json}', '{DateTime.Now}')";

            objDAL.ExecutarComandoSQL(sql);


            return(retorno);
        }
Exemplo n.º 4
0
        public List <UsuariosModel> SalvarUsuarios()
        {
            List <UsuariosModel> retorno = new List <UsuariosModel>();

            id       = id;
            name     = name.ToString();
            username = username.ToString();
            email    = email.ToString();
            email    = email.ToString();
            string street  = address.street.ToString();
            string suite   = address.suite.ToString();
            string city    = address.city.ToString();
            string zipcode = address.zipcode.ToString();
            string lat     = address.geo.lat.ToString();
            string lng     = address.geo.lng.ToString();

            phone   = phone.ToString();
            website = website.ToString();
            string name_company = company.name.ToString();
            string catchPhrase  = company.catchPhrase.ToString();
            string bs           = company.bs.ToString();

            DAL.DAL objDAL1 = new DAL.DAL();
            DAL.DAL objDAL2 = new DAL.DAL();
            DAL.DAL objDAL3 = new DAL.DAL();
            DAL.DAL objDAL4 = new DAL.DAL();

            string sqlAddress  = $"insert into projeto_mutant.address (id_usuarios, street, suite, city, zipcode) values ('{id}','{street}','{suite}','{city}','{zipcode}')";
            string sqlCompany  = $"insert into projeto_mutant.company (id_usuarios, name, catchPhrase, bs) values ('{id}','{name}','{catchPhrase}','{bs}')";
            string sqlGeo      = $"insert into projeto_mutant.geo (id_usuarios, lat, lng) values ('{id}','{lat}','{lng}')";
            string sqlUsuarios = $"insert into projeto_mutant.usuarios(id, name, username, email, phone, website) values ('{id}','{name}','{username}','{email}','{phone}','{website}')";

            objDAL1.ExecutarComandoSQL(sqlAddress);
            objDAL2.ExecutarComandoSQL(sqlCompany);
            objDAL3.ExecutarComandoSQL(sqlGeo);
            objDAL4.ExecutarComandoSQL(sqlUsuarios);

            Log("Dados de usuários salvos com sucesso!");

            return(retorno);
        }
Exemplo n.º 5
0
        public List <UsuariosModel> ListarTodosUsuarios(string metodo)
        {
            List <UsuariosModel> retorno  = new List <UsuariosModel>();
            List <UsuariosModel> retorno2 = new List <UsuariosModel>();
            UsuariosModel        item2;

            DAL.DAL objListar = new DAL.DAL();

            DesabilitarTabela    = "none";
            DesabilitarTabelaLog = "none";

            if (metodo == "carregar")
            {
                Log("Carregou a consulta em tabelas na web.");

                string json = Servico.RequestGET("users", string.Empty).ToString();
                retorno = JsonConvert.DeserializeObject <List <UsuariosModel> >(json);

                DesabilitarTabela    = "";
                DesabilitarTabelaLog = "none";

                return(retorno);
            }

            if (metodo == "visualizarJSON")
            {
                string json = Servico.RequestGET("users", string.Empty).ToString();
                retorno = JsonConvert.DeserializeObject <List <UsuariosModel> >(json);

                Log("Carregou a lista JSON na web.");

                ExibirJSON           = json.ToString();
                DesabilitarTabela    = "none";
                DesabilitarTabelaLog = "none";
                return(retorno);
            }

            if (metodo == "logs")
            {
                string sql = "select * from projeto_mutant.log order by data desc";

                DataTable dt = objListar.RetDataTable(sql);

                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    item2 = new UsuariosModel();

                    item2.descricao = dt.Rows[i]["descricao"].ToString();
                    item2.data      = dt.Rows[i]["data"].ToString();

                    retorno2.Add(item2);
                }

                Log("Carregou a consulta de logs em tabelas na web.");
                DesabilitarTabela    = "none";
                DesabilitarTabelaLog = "";

                return(retorno2);
            }

            if (metodo == "salvar")
            {
                string json = Servico.RequestGET("users", string.Empty).ToString();
                retorno = JsonConvert.DeserializeObject <List <UsuariosModel> >(json);

                if (retorno != null)
                {
                    foreach (var item in (List <UsuariosModel>)retorno)
                    {
                        id       = item.id;
                        name     = item.name.ToString();
                        username = item.username.ToString();
                        email    = item.email.ToString();
                        email    = item.email.ToString();
                        string street  = item.address.street.ToString();
                        string suite   = item.address.suite.ToString();
                        string city    = item.address.city.ToString();
                        string zipcode = item.address.zipcode.ToString();
                        string lat     = item.address.geo.lat.ToString();
                        string lng     = item.address.geo.lng.ToString();
                        phone   = item.phone.ToString();
                        website = item.website.ToString();
                        string name_company = item.company.name.ToString();
                        string catchPhrase  = item.company.catchPhrase.ToString();
                        string bs           = item.company.bs.ToString();

                        DAL.DAL objDAL1 = new DAL.DAL();
                        DAL.DAL objDAL2 = new DAL.DAL();
                        DAL.DAL objDAL3 = new DAL.DAL();
                        DAL.DAL objDAL4 = new DAL.DAL();

                        string sqlAddress  = $"insert into projeto_mutant.address (id_usuarios, street, suite, city, zipcode) values ('{id}','{street}','{suite}','{city}','{zipcode}')";
                        string sqlCompany  = $"insert into projeto_mutant.company (id_usuarios, name, catchPhrase, bs) values ('{id}','{name}','{catchPhrase}','{bs}')";
                        string sqlGeo      = $"insert into projeto_mutant.geo (id_usuarios, lat, lng) values ('{id}','{lat}','{lng}')";
                        string sqlUsuarios = $"insert into projeto_mutant.usuarios(id, name, username, email, phone, website) values ('{id}','{name}','{username}','{email}','{phone}','{website}')";

                        objDAL1.ExecutarComandoSQL(sqlAddress);
                        objDAL2.ExecutarComandoSQL(sqlCompany);
                        objDAL3.ExecutarComandoSQL(sqlGeo);
                        objDAL4.ExecutarComandoSQL(sqlUsuarios);


                        DesabilitarTabelaLog = "none";
                    }

                    Log("Dados de usuários salvos com sucesso!");
                }
            }

            return(retorno);
        }