You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
996 B
41 lines
996 B
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();
|
|
}
|
|
|
|
[HttpPost]
|
|
[Route("API/ArchivDocFromIRIS")]
|
|
public IHttpActionResult ArchivDocFromIRIS(string dokumentid)
|
|
{
|
|
return Ok();
|
|
}
|
|
|
|
}
|
|
} |