示例#1
0
        public void Save(string caminhofoto, string nome, string parabenizacao)
        {
            if (parabenizacao == string.Empty)
            {
                MessageBox.Show("PARABENIZE SEU FUNCIONÁRIO, ELE MERECE!", "TOPMOVIE", MessageBoxButtons.OK, MessageBoxIcon.Information);

                Clear = false;
            }
            else
            {
                ConverterImagem c       = new ConverterImagem();
                byte[]          imgbyte = c.Convert(caminhofoto);



                FuncionarioDoMesDataBase func = new FuncionarioDoMesDataBase();

                DTOFuncionarioDoMes funcionariodomesDTO = new DTOFuncionarioDoMes();

                funcionariodomesDTO.Foto          = imgbyte;
                funcionariodomesDTO.Nome          = nome;
                funcionariodomesDTO.parabenizacao = parabenizacao;


                func.SaveFuncDoMes(funcionariodomesDTO);

                MessageBox.Show("FUNCIONÁRIO DO MÊS CADASTRADO! PARABÉNS " + nome, "TOPMOVIE", MessageBoxButtons.OK, MessageBoxIcon.Information);

                Clear = true;
            }
        }
示例#2
0
        public void Buscar()
        {
            FuncionarioDoMesDataBase func = new FuncionarioDoMesDataBase();

            int id = func.IdMaximo();

            if (id < 1)
            {
                Visible = false;
            }
            else
            {
                func.ChamarFoto(id);
                Mstream = func.Mstream;

                func.ListFuncMes(id);
                Nome          = func.Nome;
                Parabenizacao = func.Parabenizacao;
                Visible       = true;
            }
        }