Moved repository interfaces to application layer, created blank visa requests handler

This commit is contained in:
2024-08-15 18:22:25 +03:00
parent c1a4acf414
commit b02e30ba2a
10 changed files with 34 additions and 20 deletions

View File

@@ -1,3 +1,4 @@
using ApplicationLayer.VisaApplication;
using Microsoft.AspNetCore.Mvc;
namespace SchengenVisaApi.Controllers;
@@ -10,11 +11,11 @@ public class VisaApplicationController : ControllerBase
public VisaApplicationController()
{
}
}
[HttpGet]
public void Create()
[HttpPost]
public void Create(CreateVisaApplicationRequest request)
{
throw new NotImplementedException();
}
throw new NotImplementedException();
}
}