using DAL.Models.Entities; using HRD.LDAPService.JWT; using HRD.WebApi.Controllers; using HRD.WebApi.Repositories; namespace StaffDBServer.Controllers { [JWTAuthorize] public class EmployeeStatusController : BaseController { public EmployeeStatusController(IBaseRepository repositoryBase) : base(repositoryBase) { } } }