|
| 1 | +import { Employee } from '../interfaces/employee.interface'; |
| 2 | + |
| 3 | +export const employees: Array<Employee> = [ |
| 4 | + { |
| 5 | + id: 1, name: 'Ana Silva', age: 28, city: 'São Paulo', |
| 6 | + department: 'TI', salary: 8500, status: 'Ativo', hireDate: '2023-03-15' |
| 7 | + }, |
| 8 | + { |
| 9 | + id: 2, name: 'Bruno Costa', age: 35, city: 'Rio de Janeiro', |
| 10 | + department: 'RH', salary: 7200, status: 'Ativo', hireDate: '2022-01-10' |
| 11 | + }, |
| 12 | + { |
| 13 | + id: 3, name: 'Carla Mendes', age: 42, city: 'São Paulo', |
| 14 | + department: 'Financeiro', salary: 12000, status: 'Ativo', hireDate: '2020-06-01' |
| 15 | + }, |
| 16 | + { |
| 17 | + id: 4, name: 'Diego Oliveira', age: 31, city: 'Belo Horizonte', |
| 18 | + department: 'TI', salary: 9800, status: 'Inativo', hireDate: '2021-09-20' |
| 19 | + }, |
| 20 | + { |
| 21 | + id: 5, name: 'Elena Santos', age: 26, city: 'Curitiba', |
| 22 | + department: 'Marketing', salary: 6500, status: 'Ativo', hireDate: '2024-02-01' |
| 23 | + }, |
| 24 | + { |
| 25 | + id: 6, name: 'Fernando Lima', age: 39, city: 'São Paulo', |
| 26 | + department: 'TI', salary: 15000, status: 'Ativo', hireDate: '2019-04-15' |
| 27 | + }, |
| 28 | + { |
| 29 | + id: 7, name: 'Gabriela Rocha', age: 33, city: 'Porto Alegre', |
| 30 | + department: 'RH', salary: 8000, status: 'Inativo', hireDate: '2022-07-01' |
| 31 | + }, |
| 32 | + { |
| 33 | + id: 8, name: 'Hugo Pereira', age: 45, city: 'Rio de Janeiro', |
| 34 | + department: 'Financeiro', salary: 14000, status: 'Ativo', hireDate: '2018-11-10' |
| 35 | + }, |
| 36 | + { |
| 37 | + id: 9, name: 'Isabela Alves', age: 29, city: 'São Paulo', |
| 38 | + department: 'Marketing', salary: 7800, status: 'Ativo', hireDate: '2023-08-20' |
| 39 | + }, |
| 40 | + { |
| 41 | + id: 10, name: 'João Ferreira', age: 37, city: 'Brasília', |
| 42 | + department: 'TI', salary: 11000, status: 'Ativo', hireDate: '2021-01-05' |
| 43 | + }, |
| 44 | + { |
| 45 | + id: 11, name: 'Karen Souza', age: 24, city: 'Curitiba', |
| 46 | + department: 'TI', salary: 6000, status: 'Ativo', hireDate: '2024-06-15' |
| 47 | + }, |
| 48 | + { |
| 49 | + id: 12, name: 'Lucas Barbosa', age: 41, city: 'São Paulo', |
| 50 | + department: 'Financeiro', salary: 13500, status: 'Inativo', hireDate: '2019-02-28' |
| 51 | + }, |
| 52 | + { |
| 53 | + id: 13, name: 'Marina Castro', age: 30, city: 'Rio de Janeiro', |
| 54 | + department: 'Marketing', salary: 8200, status: 'Ativo', hireDate: '2022-12-01' |
| 55 | + }, |
| 56 | + { |
| 57 | + id: 14, name: 'Nelson Dias', age: 48, city: 'Belo Horizonte', |
| 58 | + department: 'RH', salary: 9500, status: 'Ativo', hireDate: '2017-05-10' |
| 59 | + }, |
| 60 | + { |
| 61 | + id: 15, name: 'Olivia Ribeiro', age: 27, city: 'Porto Alegre', |
| 62 | + department: 'TI', salary: 7500, status: 'Ativo', hireDate: '2023-10-01' |
| 63 | + }, |
| 64 | + { |
| 65 | + id: 16, name: 'Paulo Cardoso', age: 36, city: 'São Paulo', |
| 66 | + department: 'TI', salary: 10500, status: 'Inativo', hireDate: '2020-08-15' |
| 67 | + }, |
| 68 | + { |
| 69 | + id: 17, name: 'Raquel Martins', age: 32, city: 'Brasília', |
| 70 | + department: 'Financeiro', salary: 9000, status: 'Ativo', hireDate: '2021-11-20' |
| 71 | + }, |
| 72 | + { |
| 73 | + id: 18, name: 'Samuel Teixeira', age: 44, city: 'Rio de Janeiro', |
| 74 | + department: 'Marketing', salary: 11500, status: 'Ativo', hireDate: '2018-03-01' |
| 75 | + }, |
| 76 | + { |
| 77 | + id: 19, name: 'Tatiana Moreira', age: 25, city: 'Curitiba', |
| 78 | + department: 'RH', salary: 5800, status: 'Ativo', hireDate: '2024-01-15' |
| 79 | + }, |
| 80 | + { |
| 81 | + id: 20, name: 'Victor Nascimento', age: 38, city: 'São Paulo', |
| 82 | + department: 'TI', salary: 12500, status: 'Ativo', hireDate: '2020-04-01' |
| 83 | + } |
| 84 | +]; |
0 commit comments