public List <pFuncionario> Login(int Matr_Func, string Senha) { Dao D = new Dao(); DataTable DT = D.Login(Matr_Func, Senha); List <pFuncionario> LC = new List <pFuncionario>(); for (int i = 0; i < DT.Rows.Count; i++) { pFuncionario P = new pFuncionario(); P.Matr_Func = Convert.ToInt32(DT.Rows[i]["Matr_Func"]); P.Nome = DT.Rows[i]["Nome"].ToString(); P.Rg = DT.Rows[i]["Rg"].ToString(); P.Cpf = DT.Rows[i]["Cpf"].ToString(); P.Telefone = DT.Rows[i]["Telefone"].ToString(); P.Email = DT.Rows[i]["Email"].ToString(); P.DtNascimento = Convert.ToDateTime(DT.Rows[i]["DTNascimento"]); P.Estado = DT.Rows[i]["Estado"].ToString(); P.Uf = DT.Rows[i]["Uf"].ToString(); P.Lougradouro = DT.Rows[i]["Lougradouro"].ToString(); P.Complemento = DT.Rows[i]["Complemento"].ToString(); P.Bairro = DT.Rows[i]["Bairro"].ToString(); P.Cep = DT.Rows[i]["Cep"].ToString(); P.Senha = DT.Rows[i]["Senha"].ToString(); P.Cargo = DT.Rows[i]["Cargo"].ToString(); LC.Add(P); } return(LC); }
public List<pFuncionario> Login(int Matr_Func, string Senha) { Dao D = new Dao(); DataTable DT = D.Login(Matr_Func, Senha); List<pFuncionario> LC = new List<pFuncionario>(); for (int i = 0; i < DT.Rows.Count; i++) { pFuncionario P = new pFuncionario(); P.Matr_Func = Convert.ToInt32(DT.Rows[i]["Matr_Func"]); P.Nome = DT.Rows[i]["Nome"].ToString(); P.Rg = DT.Rows[i]["Rg"].ToString(); P.Cpf = DT.Rows[i]["Cpf"].ToString(); P.Telefone = DT.Rows[i]["Telefone"].ToString(); P.Email = DT.Rows[i]["Email"].ToString(); P.DtNascimento = Convert.ToDateTime(DT.Rows[i]["DTNascimento"]); P.Estado = DT.Rows[i]["Estado"].ToString(); P.Uf = DT.Rows[i]["Uf"].ToString(); P.Lougradouro = DT.Rows[i]["Lougradouro"].ToString(); P.Complemento = DT.Rows[i]["Complemento"].ToString(); P.Bairro = DT.Rows[i]["Bairro"].ToString(); P.Cep = DT.Rows[i]["Cep"].ToString(); P.Senha = DT.Rows[i]["Senha"].ToString(); P.Cargo = DT.Rows[i]["Cargo"].ToString(); LC.Add(P); } return LC; }