public static List <DadosOrdemVendaDTO> ListOrdemVendaTodosClientes(Constants.TipoSimulado tipo)
        {
            string name            = string.Empty;
            string description     = string.Empty;
            string storeName       = string.Empty;
            int    productGroup1ID = 0;
            int    especialidadeID = 0;

            switch (tipo)
            {
            case Constants.TipoSimulado.R3_Pediatria:
                name            = "2019 R3 PEDIATRIA";
                description     = "R3 Pediatria";
                storeName       = "R3 MEDERI";
                productGroup1ID = 82;
                especialidadeID = 239;
                break;

            case Constants.TipoSimulado.R3_Clinica:
                name            = "2019 R3 CLÍNICA MÉDICA";
                description     = "R3 Clinica";
                storeName       = "R3 MEDWRITERS";
                productGroup1ID = 76;
                especialidadeID = 236;
                break;

            case Constants.TipoSimulado.R3_Cirurgia:
                name            = "2019 R3 CIRURGIA";
                description     = "R3 Cirurgia";
                storeName       = "R3 MEDERI";
                productGroup1ID = 81;
                especialidadeID = 18;
                break;

            case Constants.TipoSimulado.R4_GO:
                name            = "2019 R4 GO";
                description     = "R4 GO";
                storeName       = "R3 MEDERI";
                productGroup1ID = 83;
                especialidadeID = 429;
                break;
            }

            return(new List <DadosOrdemVendaDTO>()
            {
                new DadosOrdemVendaDTO()
                {
                    intOrderID = 632819,
                    intClientID = 1,
                    personName = "Cliente Teste 01",
                    txtName = name,
                    intProductGroup1ID = productGroup1ID,
                    txtDescription = description,
                    txtStoreName = storeName,
                    cityIntState = -1,
                    intEspecialidadeID = especialidadeID
                },
                new DadosOrdemVendaDTO()
                {
                    intOrderID = 648082,
                    intClientID = 2,
                    personName = "Cliente Teste 02",
                    txtName = name,
                    intProductGroup1ID = productGroup1ID,
                    txtDescription = description,
                    txtStoreName = storeName,
                    cityIntState = -1,
                    intEspecialidadeID = especialidadeID
                },
                new DadosOrdemVendaDTO()
                {
                    intOrderID = 632202,
                    intClientID = 3,
                    personName = "Cliente Teste 03",
                    txtName = name,
                    intProductGroup1ID = productGroup1ID,
                    txtDescription = description,
                    txtStoreName = storeName,
                    cityIntState = -1,
                    intEspecialidadeID = especialidadeID
                },
                new DadosOrdemVendaDTO()
                {
                    intOrderID = 666775,
                    intClientID = 4,
                    personName = "Cliente Teste 04",
                    txtName = name,
                    intProductGroup1ID = productGroup1ID,
                    txtDescription = description,
                    txtStoreName = storeName,
                    cityIntState = -1,
                    intEspecialidadeID = especialidadeID
                }, new DadosOrdemVendaDTO()
                {
                    intOrderID = 638418,
                    intClientID = 5,
                    personName = "Cliente Teste 05",
                    txtName = name,
                    intProductGroup1ID = productGroup1ID,
                    txtDescription = description,
                    txtStoreName = storeName,
                    cityIntState = -1,
                    intEspecialidadeID = especialidadeID
                }
            });
        }
        public static List <LogSimuladoAlunoTurmaDTO> ListLogSimuladoAlunoTurma(Constants.TipoSimulado tipo)
        {
            string especialidade = string.Empty;
            string unidade       = string.Empty;
            string turma         = string.Empty;

            switch (tipo)
            {
            case Constants.TipoSimulado.R3_Pediatria:
                turma         = "2019 R3 PEDIATRIA";
                especialidade = "PEDIATRIA (ANO OPCIONAL)";
                unidade       = "R3 MEDERI";
                break;

            case Constants.TipoSimulado.R3_Clinica:
                turma         = "2019 R3 CLÍNICA MÉDICA";
                especialidade = "CLÍNICA MÉDICA (ANO OPCIONAL)";
                unidade       = "R3 MEDWRITERS";
                break;

            case Constants.TipoSimulado.R3_Cirurgia:
                turma         = "2019 R3 CIRURGIA";
                especialidade = "CIRURGIA GERAL (PROGRAMA AVANÇADO)";
                unidade       = "R3 MEDERI";
                break;

            case Constants.TipoSimulado.R4_GO:
                turma         = "2019 R4 GO";
                especialidade = "GINECOLOGIA E OBSTETRÍCIA (ANO OPCIONAL)";
                unidade       = "R3 MEDERI";
                break;
            }

            return(new List <LogSimuladoAlunoTurmaDTO>()
            {
                new LogSimuladoAlunoTurmaDTO()
                {
                    intSimuladoID = 1,
                    intClientID = 1,
                    intOrderID = 632819,
                    txtUnidade = "MEDREADER",
                    intState = 1,
                    txtTurma = "2019 MED MEDICINE MEDREADER",
                    txtEspecialidade = "Revalidação de Diploma",
                },
                new LogSimuladoAlunoTurmaDTO()
                {
                    intSimuladoID = 1,
                    intClientID = 2,
                    intOrderID = 648082,
                    txtUnidade = unidade,
                    intState = -1,
                    txtTurma = turma,
                    txtEspecialidade = especialidade,
                },
                new LogSimuladoAlunoTurmaDTO()
                {
                    intSimuladoID = 1,
                    intClientID = 3,
                    intOrderID = 632202,
                    txtUnidade = unidade,
                    intState = -1,
                    txtTurma = turma,
                    txtEspecialidade = especialidade,
                },
                new LogSimuladoAlunoTurmaDTO()
                {
                    intSimuladoID = 1,
                    intClientID = 4,
                    intOrderID = 666775,
                    txtUnidade = unidade,
                    intState = -1,
                    txtTurma = turma,
                    txtEspecialidade = especialidade,
                },
                new LogSimuladoAlunoTurmaDTO()
                {
                    intSimuladoID = 1,
                    intClientID = 5,
                    intOrderID = 638418,
                    txtUnidade = unidade,
                    intState = -1,
                    txtTurma = turma,
                    txtEspecialidade = especialidade,
                }
            });
        }