public int Delete(int id)
        {
            try
            {
                var _projeto = _projetoRepository.GetById(id);

                if (_projetoRepository.RemoveProjeto(_projeto))
                {
                    return(1);
                }
                else
                {
                    return(0);
                }
            }
            catch (System.Exception)
            {
                return(0);
            }
        }