refactor: Projektdateien migriert. Cloud-NuGet-Pakete durch lokale NuGet-Projekte ersetzt.
This commit is contained in:
15
StaffDBServer/Controllers/WebAppRoleController.cs
Normal file
15
StaffDBServer/Controllers/WebAppRoleController.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using DAL.Models.Entities;
|
||||
using HRD.LDAPService.JWT;
|
||||
using HRD.WebApi.Controllers;
|
||||
using HRD.WebApi.Repositories;
|
||||
|
||||
namespace StaffDBServer.Controllers
|
||||
{
|
||||
[JWTAuthorize]
|
||||
public class WebAppRoleController : BaseController<WebAppRole>
|
||||
{
|
||||
public WebAppRoleController(IBaseRepository<WebAppRole> repositoryBase) : base(repositoryBase)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user