public Question Post([FromBody] Question model)
        {
            // POST: api/User
            // this post method insert the new row or update the current row if there is a record with same ID
            QuestionDE de    = new QuestionDE();
            Question   sonuc = de.AddQuestion(model);

            return(sonuc);
        }