Added Test echo posting2
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
rak 2022-10-18 22:40:27 +10:00
parent 13acfdc7da
commit 7dad7f6aae

View File

@ -8,10 +8,10 @@ namespace NeDvachAPI.Controllers
public class TestPostingController : ControllerBase public class TestPostingController : ControllerBase
{ {
[HttpPost] [HttpPost]
public string Area(int altitude , int height) public int Area(int altitude , int height)
{ {
//DBchat.SendPost(ReceivedPost); //DBchat.SendPost(ReceivedPost);
return $"Первое значение {altitude} и второе значение {height}"; return altitude+height;
} }
} }
} }