Update 20240719
This commit is contained in:
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();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user