Encrypting the response for Purchase invoice controller

This commit is contained in:
ashutosh.nehete 2025-12-11 10:06:42 +05:30
parent 35c92183a5
commit bb102ce188

View File

@ -4,13 +4,16 @@ using Marco.Pms.Model.Dtos.PurchaseInvoice;
using Marco.Pms.Model.Utilities;
using Marco.Pms.Services.Service.ServiceInterfaces;
using MarcoBMS.Services.Helpers;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.JsonPatch;
using Microsoft.AspNetCore.Mvc;
namespace Marco.Pms.Services.Controllers
{
[Route("api/[controller]")]
[Authorize]
[ApiController]
[EncryptResponse]
[Route("api/[controller]")]
public class PurchaseInvoiceController : ControllerBase
{
private readonly UserHelper _userHelper;