2024-05-20 15:11:13 -05:00
|
|
|
using API.Authentication.Interfaces;
|
|
|
|
using API.DTO.Base;
|
|
|
|
using API.DTO.Base.Update;
|
|
|
|
using API.Services;
|
|
|
|
using DAL.Models;
|
|
|
|
using DAL.Models.Audits;
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
|
namespace API.Controllers
|
|
|
|
{
|
|
|
|
[ApiController]
|
|
|
|
[Route("api/v1/[controller]")]
|
2024-07-12 23:29:28 -05:00
|
|
|
public class GrantController : CRUDBase<GrantController, GrantDTO, GrantUpdateDTO, Grant, AuditGrant, IGrantAuthentication, GrantService>
|
2024-05-20 15:11:13 -05:00
|
|
|
{
|
|
|
|
public GrantController(ILogger<GrantController> logger, UserService userService, GrantService service) : base(logger, userService, service)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|