// POST: api/Agendamento
        public IHttpActionResult Post([FromBody] Agendamento agendameto)
        {
            AgendamentoDAO ag = new AgendamentoDAO();


            if (ag.Busca(agendameto.SalaID) == null)
            {
                try
                {
                    ag.Adiciona(agendameto);
                }
                catch (Exception)
                {
                    throw;
                }

                return(Ok());
            }
            else
            {
                return(InternalServerError(new WebException("Sala reservada!")));
            }
        }