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.
31 lines
645 B
31 lines
645 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 UnterschriftController : ApiController
|
|
{
|
|
|
|
string connectionstring = ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString;
|
|
[HttpGet]
|
|
[Route("API/GetUnterschriftAsBase64")]
|
|
public IHttpActionResult GetUnterschriftAsBase64(string TGNummer)
|
|
{
|
|
|
|
|
|
return Ok();
|
|
}
|
|
}
|
|
}
|