LicenseTypeController.cs 739 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using System.Collections;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using AIAHTML5.Server.Models;

namespace AIAHTML5.Server.Controllers
{
    public class LicenseTypeController : ApiController
    {
        DbModel objDbModel = new DbModel();

        // GET: api/AccountType
        public HttpResponseMessage Get()
        {
            ArrayList accountsList = objDbModel.GetAllLicenseType();

            var securityQuesJson = JsonConvert.SerializeObject(accountsList, Formatting.Indented);

            return Request.CreateResponse(HttpStatusCode.OK, securityQuesJson);
        }
    }
}