You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Api/Controllers/Ghra/Ghra_StaffController.cs

14 lines
486 B

namespace Tiobon.Core.Api.Controllers;
/// <summary>
/// Ghra_Staff(Controller)
/// </summary>
[Route("api/[controller]")]
[ApiController, GlobalActionFilter]
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghra)]
public class Ghra_StaffController : BaseController<IGhra_StaffServices, Ghra_Staff, Ghra_StaffDto, InsertGhra_StaffInput, EditGhra_StaffInput>
{
public Ghra_StaffController(IGhra_StaffServices service) : base(service)
{
}
}