18 lines
381 B
C#
18 lines
381 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System.Text.Json;
|
|
|
|
namespace NeDvachAPI.Controllers
|
|
{
|
|
[ApiController]
|
|
[Route("[controller]")]
|
|
public class TestPostingController : ControllerBase
|
|
{
|
|
[HttpPost]
|
|
public int Area(int altitude , int height)
|
|
{
|
|
//DBchat.SendPost(ReceivedPost);
|
|
return altitude+height;
|
|
}
|
|
}
|
|
}
|