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;
}