person controller and service created

This commit is contained in:
2024-10-02 16:09:11 +02:00
Unverified
parent 3cd282a2e9
commit 9a9e29ecf4
22 changed files with 387 additions and 20 deletions

View File

@@ -0,0 +1,14 @@
using Microsoft.AspNetCore.Mvc;
namespace WatchIt.WebAPI.Controllers;
[ApiController]
[Route("persons")]
public class PersonsController : ControllerBase
{
#region SERVICES
#endregion
}