Update 20240719
This commit is contained in:
@@ -11,7 +11,7 @@ using Database;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
|
||||
namespace EDOKAAPI_NetFramework.Controllers
|
||||
namespace API_NetFramework.Controllers
|
||||
{
|
||||
public class TestParam
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
|
||||
namespace EDOKAAPI_NetFramework.Controllers
|
||||
namespace API_NetFramework.Controllers
|
||||
{
|
||||
public class HomeController : Controller
|
||||
{
|
||||
|
||||
34
API_NetFramework/Controllers/OnBaseController.cs
Normal file
34
API_NetFramework/Controllers/OnBaseController.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Configuration;
|
||||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.Net.Http;
|
||||
using System.Web.Http;
|
||||
using DOCGEN;
|
||||
using Model;
|
||||
using Database;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace API_NetFramework.Controllers
|
||||
{
|
||||
public class OnBaseController : ApiController
|
||||
{
|
||||
// GET: OnBase
|
||||
string connectionstring = ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString;
|
||||
[HttpGet]
|
||||
[Route("API/ArchiveDocFromDatabase")]
|
||||
public IHttpActionResult ArchivDoc_From_Database(string dokid)
|
||||
{
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
[Route("API/ArchiveDocBase64")]
|
||||
public IHttpActionResult ArchivDocBase64(string dokid)
|
||||
{
|
||||
return Ok();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -5,7 +5,7 @@ using System.Net;
|
||||
using System.Net.Http;
|
||||
using System.Web.Http;
|
||||
|
||||
namespace EDOKAAPI_NetFramework.Controllers
|
||||
namespace API_NetFramework.Controllers
|
||||
{
|
||||
public class ValuesController : ApiController
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user