28 lines
586 B
C#
28 lines
586 B
C#
using DevExtreme.AspNet.Data;
|
|
using DevExtreme.AspNet.Mvc;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
using OSS.Models;
|
|
using System.Data.Entity;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Net.Http;
|
|
using System.Net.Http.Formatting;
|
|
using System.Web.Http;
|
|
using System;
|
|
|
|
namespace OSS.Controllers
|
|
{
|
|
[Authorize]
|
|
[Route("api/InvestorProfile/{action}", Name = "InvestorProfile")]
|
|
public class InvestorProfileApiController : ApiController
|
|
{
|
|
private OSSDBContext myContext = new OSSDBContext();
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|