public TB_PREFERENCIA Get(int id)
        {
            pre = new TB_PREFERENCIA();

            pre = (TB_PREFERENCIA) new Preferencia().ProducarPeloId(id).Objeto[0];

            return(pre);
        }
        public int Delete(int id)
        {
            pre = new TB_PREFERENCIA();

            pre = (TB_PREFERENCIA) new Preferencia().ProducarPeloId(id).Objeto[0];

            int retorno = new Preferencia().Remover(pre).CodigoErro;

            return(retorno);
        }
        public int Put(int id, [FromBody] TB_PREFERENCIA value)
        {
            int retorno = new Preferencia().Atualizar(value).CodigoErro;

            return(retorno);
        }
        public int Post([FromBody] TB_PREFERENCIA value)
        {
            int retorno = new Preferencia().Cadastrar(value).CodigoErro;

            return(retorno);
        }