20 lines
552 B
C#
20 lines
552 B
C#
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]")]
|
|
public class GrantController : CRUDBase<GrantController, GrantDTO, GrantUpdateDTO, Grant, AuditGrant, IYesAuthentication, GrantService>
|
|
{
|
|
public GrantController(ILogger<GrantController> logger, UserService userService, GrantService service) : base(logger, userService, service)
|
|
{
|
|
}
|
|
}
|
|
}
|