Пример #1
0
        public OcorrenciasTO(bool conbd, bool instanciadependente)

        {
            if (conbd)
            {
                this._dao = new OcorrenciasDAO();
            }

            if (instanciadependente)
            {
                this._status    = new StatusTO(false);
                this._problemas = new ProblemasTO(false, true);
                this._usuario   = new UsuarioTO(true, true, true);
            }
        }
Пример #2
0
        public List <object> GerenciaUsuarios(int acao, String ConnectionString)
        {
            try
            {
                lista_dados = new List <object>();
                dt          = new DataTable();
                dt          = _daouser.GerenciaUsuarios(this.CodigoUsuario, this.Login, this.Psw, this.Codigo, acao, ConnectionString);
                if (!(dt == null))
                {
                    if (dt.Rows.Count > 0)
                    {
                        if (acao != 2)
                        {
                            lista_dados.Add(dt.Rows[0][0].ToString());
                        }
                        else
                        {
                            for (int x = 0; x < dt.Rows.Count; x++)
                            {
                                UsuarioTO item = new UsuarioTO(false, false, true);
                                item.Codigo         = int.Parse(dt.Rows[x]["CODIGOUSUARIO"].ToString());
                                item.Login          = dt.Rows[x]["LOGIN"].ToString();
                                item.Nome           = dt.Rows[x]["NOME"].ToString();
                                item.Email          = dt.Rows[x]["EMAIL"].ToString();
                                item.Ramal          = int.Parse(dt.Rows[x]["RAMAL"].ToString());
                                item.DataNascimento = DateTime.Parse(dt.Rows[x]["DTNASC"].ToString());
                                lista_dados.Add(item);
                            }
                        }
                    }
                }

                return(lista_dados);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }