LicenseTermConditionController.cs 2 KB
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using log4net;
using AIAHTML5.API.Constants;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;

namespace AIAHTML5.API.Controllers
{
    public class LicenseTermConditionController : ApiController
    {
        // GET api/licensetermcondition
        public IEnumerable<string> Get()
        {
            return new string[] { "value1", "value2" };
        }

        // GET api/licensetermcondition/5
        public string Get(int id)
        {
            return "value";
        }

        // POST api/licensetermcondition
        public HttpResponseMessage Post([FromBody]string licenseeAccountNumber)
        {
            ILog logger = log4net.LogManager.GetLogger((System.Reflection.MethodBase.GetCurrentMethod().DeclaringType));
            logger.Debug("inside POST");
            HttpResponseMessage response = null;

            dynamic result = AIAHTML5.API.Models.Users.UpdateLicenseTerm(licenseeAccountNumber);
            if (Convert.ToString(result) != AIAConstants.SQL_CONNECTION_ERROR)
            {
                if (Convert.ToInt32(result) > 0)
                    response = new HttpResponseMessage { StatusCode = HttpStatusCode.OK, Content = new StringContent(AIAConstants.LICENSE_TERM_CONDITION_UPDATE_SUCCESS) };
                else
                    response = new HttpResponseMessage { StatusCode = HttpStatusCode.OK, Content = new StringContent(AIAConstants.LICENSE_TERM_CONDITION_UPDATE_FAILED) };
            }
            else
            {
                response = new HttpResponseMessage { StatusCode = HttpStatusCode.OK, Content = new StringContent(AIAConstants.SQL_CONNECTION_ERROR) };
            }
            return response;
        }


        // PUT api/licensetermcondition/5
        public void Put(int id, [FromBody]string value)
        {
        }

        // DELETE api/licensetermcondition/5
        public void Delete(int id)
        {
        }
    }
}